/* Landing Page */
.landing-hero {
  min-height: 90vh;
  padding: 6rem 0;
  position: relative;
}

.trusted-section {
  text-align: center;
  padding: 5rem 0;
  background: white;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

.trusted-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.trusted-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.trusted-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-standard);
}

.logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.trusted-logo {
  width: 180px;
  height: auto;
  border-radius: 8px;
  transition: var(--transition-standard);
}

/* About Page */
.mission-section {
  padding: 80px 0;
  text-align: center;
  background: var(--background-white);
  position: relative;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.mission-section p {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.impact-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
  position: relative;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.get-started-section {
  padding: 80px 0;
  background: var(--background-white);
  position: relative;
}

.get-started-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.why-choose-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
  position: relative;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.faq-section {
  padding: 80px 0;
  background: var(--background-white);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

/* Volunteer Page */
.info-section {
  padding: 80px 0;
  text-align: center;
  background: white;
}

.steps-section {
  padding: 80px 0;
  background: var(--background-light);
}

.step {
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 0 8px 8px 0;
  box-shadow: var(--card-shadow);
  transition: var(--transition-standard);
}

.step:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 1rem;
  color: var(--text-light);
}

.testimonial-section {
  padding: 80px 0;
  text-align: center;
  background: white;
}

.testimonial {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 1rem;
  padding: 2rem;
  background: var(--background-light);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: rgba(12, 39, 83, 0.1);
}

.testimonial-author {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-dark);
}

/* Contact Page */
.contact-hero {
  padding: 80px 0;
  background: white;
}

/* Success Pages */
.success-hero {
  padding: 80px 0;
  background: white;
}

.success-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.success-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .landing-hero {
    text-align: center;
    padding: 4rem 1.5rem;
  }

  .hero-content {
    align-items: center !important;
  }

  .logos-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .trusted-title {
    font-size: 1.8rem;
  }

  .logo-card {
    padding: 1rem;
  }

  .trusted-logo {
    width: 140px;
  }

  .mission-section p {
    font-size: 1.1rem;
  }
}