.hero-wrapper {
  padding: 4rem 2rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  /* background-color: #f6f5f3; */
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-container img {
  width: 650px;
}

.hero-container p:nth-of-type(1) {
  color: var(--evershine-primary);
  font-size: 1.3rem;
  font-weight: 500;
}

.hero-container h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--evershine-secondary);
}

.hero-container p:nth-of-type(2) {
  color: var(--evershine-text-light);
  font-size: clamp(1rem, 3vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta-button {
  background-color: var(--evershine-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.hero-cta-button:hover {
  background-color: #005cb2;
}

.mission-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
  }
  
  .mission-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .mission-header {
    margin-bottom: 4rem;
  }
  
  .mission-subtitle {
    color: #0073db;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  .mission-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
  }
  
  .mission-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    width: 2px;
    height: 100%;
    background-color: #0073db;;
    top: 0;
    height: calc(100% - 130px);
  }
  
  .timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .timeline-icon {
    width: 60px;
    height: 60px;
    background-color: #0073db;;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    z-index: 2;
  }
  
  .timeline-content {
    width: calc(100% - 90px);
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-left: 90px;
  }
  
  .timeline-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .timeline-text {
    color: #666;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .mission-title {
      font-size: 2.5rem;
    }
    
    .timeline-content {
      padding: 1.5rem;
    }
  }

  /* Existing CSS remains unchanged */

.trust-section {
  padding: 6rem 2rem;
  background-color: white;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.trust-content {
  flex: 1;
}

.trust-image {
  flex: 1;
  position: relative;
}

.trust-image img {
  width: 100%;
  height: auto;
}

.trust-subtitle {
  color: #0073db;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.trust-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.trust-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-feature i {
  color: #0073db;
  font-size: 1.5rem;
  padding-top: 0.2rem;
}

.trust-feature-content h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-feature-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .trust-container {
    flex-direction: column;
  }
  
  .trust-image {
    order: -1;
  }
  
  .trust-features {
    grid-template-columns: 1fr;
  }
  
  .trust-title {
    font-size: 2rem;
  }
}

/* Previous CSS remains unchanged */

.booking-cta {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #0073db 0%, #00a6ed 100%);
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80') center/cover;
  opacity: 0.1;
}

.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.booking-stat {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.booking-stat:hover {
  transform: translateY(-5px);
}

.booking-stat i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.booking-stat h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.booking-stat p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.booking-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.booking-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: white;
  color: #0073db;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.booking-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.booking-button i {
  transition: transform 0.3s ease;
}

.booking-button:hover i {
  transform: translateX(5px);
}

@media (max-width: 1130px) {
  .hero-container img {
    width: 100%;
    margin: 0 auto;
}
}

@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-title {
    font-size: 2.5rem;
  }
  
  .booking-stat {
    padding: 1.5rem;
  }

  .hero-wrapper {
    padding: 2rem 1rem;
    min-height: auto;
    margin-top: 4rem;
}

.hero-container {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
}

.hero-container img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
}

@media (max-width: 480px) {
  .hero-container h1 {
      font-size: 1.7rem;
  }

  .hero-container p:nth-of-type(1) {
      font-size: 1.1rem;
  }

  .hero-container p:nth-of-type(2) {
      font-size: 1rem;
  }
}