body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
}

.about-hero {
  background: linear-gradient(to right, #c40000, #f1c40f);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 20px;
}

.our-story, .why-travel, .reviews-section {
  padding: 60px 20px;
  text-align: center;
}

.our-story h2,
.why-travel h2,
.reviews-section h2 {
  font-size: 32px;
  color: #c40000;
  margin-bottom: 30px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.our-story p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.benefit-box {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.benefit-box .icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.benefit-box h3 {
  margin: 5px 0;
  color: #222;
}

.benefit-box p {
  font-size: 15px;
  color: #444;
}

.rating-summary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.summary-left {
  flex: 1;
  text-align: center;
  min-width: 250px;
}

.summary-left .average {
  font-size: 40px;
  font-weight: bold;
  color: #c40000;
}

.stars i {
  color: #ffc107;
  margin-right: 2px;
}

.total-reviews {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.summary-right {
  flex: 2;
  min-width: 300px;
  padding: 10px 20px;
}

.bar-row {
  display: flex;
  align-items: center;
  margin: 6px 0;
}

.bar-label {
  width: 20px;
  font-weight: bold;
}

.bar-container {
  flex: 1;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 6px;
  margin: 0 10px;
}

.bar-fill {
  height: 100%;
  background-color: #28a745;
  border-radius: 6px;
}

.bar-count {
  width: 20px;
  text-align: right;
  font-size: 14px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

.review-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
}

.review-content {
  flex: 1;
  text-align: left;
}

.top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.caption {
  color: #c40000;
  font-weight: bold;
}

.message {
  font-style: italic;
  color: #333;
  font-size: 15px;
}

.view-all-wrapper {
  margin-top: 40px;
  text-align: center;
}

.view-all-btn {
  background-color: #c40000;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #a10000;
}

@media (max-width: 768px) {
  .rating-summary {
    flex-direction: column;
    align-items: center;
  }

  .benefits-wrapper {
    flex-direction: column;
  }

  .review-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-card img {
    margin-bottom: 10px;
  }
}
