/* Core Variables */
:root {
  --primary: #1a5d1a;
  --primary-dark: #0f2e0f;
  --accent: #ffc436;
  --accent-light: #ffd700;
  --white: #ffffff;
  --black: #111111;

  /* Enhanced Gradients */
  --gradient-text: linear-gradient(
    120deg,
    var(--accent-light) 0%,
    var(--accent) 50%,
    var(--accent-light) 100%
  );
  --gradient-bg: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--gradient-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

/* Background Effects */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 196, 54, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(26, 93, 26, 0.15) 0%,
      transparent 50%
    );
  filter: blur(80px);
}

/* Main Container */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

/* Text Content */
.hero-text {
  grid-column: 2 / 7;
  padding-top: 60px;
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-family: "Unbounded", sans-serif;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-title span {
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
  font-size: 1.2em;
  margin-top: 8px;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Button Styles */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 10px 20px rgba(255, 196, 54, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 196, 54, 0.3);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 196, 54, 0.1);
  transform: translateY(-3px);
}

/* Image Section */
.hero-image {
  grid-column: 7 / 12;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  transform: perspective(1000px) rotateY(-5deg) translateZ(0);
  transition: transform 0.5s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(255, 196, 54, 0.1);
  border-radius: 40px;
  transform: perspective(1000px) rotateY(-5deg);
  z-index: -1;
}

/* Decorative SVGs */
.hero svg {
  position: absolute;
  width: 40px;
  height: 40px;
  fill: var(--accent);
  opacity: 0.15;
}

.hero svg:nth-child(1) {
  top: 15%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.hero svg:nth-child(2) {
  top: 25%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
  animation-delay: -2s;
}

.hero svg:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation: float 7s ease-in-out infinite;
  animation-delay: -4s;
}

/* Animations */
@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-text {
    grid-column: 1 / 7;
  }

  .hero-image {
    grid-column: 7 / 13;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-text {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 80px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Awards Section */
.awards {
  padding: 50px 0;
  background: #fafafa;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  font-family: "Unbounded", sans-serif;
  margin-bottom: 10px;
}

/* Awards Layout */
.awards-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Award Card */
.award-item {
  background: white;
  padding: 24px 16px;
  text-align: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.award-item:hover {
  transform: translateY(-3px);
}

/* Award Content */
.award-year {
  font-size: 2.25rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.award-title {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.4;
}

.cert-item {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* Accent Line */
.award-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .awards {
    padding: 40px 0;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .award-year {
    font-size: 2rem;
  }
}

/* Mission Section */
.mission {
  padding: 120px 0;
  background: linear-gradient(135deg, #e8f3db 0%, #dbe8c3 100%);
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(26, 93, 26, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 196, 54, 0.08) 0%,
      transparent 50%
    );
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite alternate;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* Mission Content */
.mission-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

/* Mission Title */
.mission-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  line-height: 1.3;
  margin-bottom: 60px;
  color: var(--primary);
  position: relative;
}

.mission-title span {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientFlow 8s linear infinite;
}

/* Journey Button */
.journey-btn {
  margin: 0 0 80px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  background: var(--primary);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(26, 93, 26, 0.15);
}

.journey-btn:hover {
  transform: translateY(-5px);
  background: var(--accent);
  box-shadow: 0 15px 30px rgba(255, 196, 54, 0.2);
}

.journey-btn i {
  transition: transform 0.3s ease;
}

.journey-btn:hover i {
  transform: translateX(5px);
}

/* Stats Grid */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Stat Items */
.stat-item {
  position: relative;
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.stat-item:nth-child(1) {
  animation: slideUp 0.6s ease forwards 0.2s;
}
.stat-item:nth-child(2) {
  animation: slideUp 0.6s ease forwards 0.4s;
}
.stat-item:nth-child(3) {
  animation: slideUp 0.6s ease forwards 0.6s;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.5);
}

.stat-item:hover::before {
  opacity: 1;
}

/* Stat Numbers */
.stat-number {
  font-size: 3.5rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: "+";
  font-size: 2rem;
  position: absolute;
  top: 0;
  right: -20px;
  color: var(--accent);
}

.stat-item p {
  font-size: 1.1rem;
  color: #2e8b57;
  line-height: 1.6;
  font-weight: 500;
  max-width: 200px;
  margin: 0 auto;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.05;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.15;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .mission {
    padding: 100px 0;
  }

  .impact-stats {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .mission {
    padding: 80px 0;
  }

  .mission-title {
    font-size: 2rem;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .journey-btn {
    margin-bottom: 60px;
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .impact-stats {
    grid-template-columns: 1fr;
    max-width: 350px;
    gap: 25px;
    padding: 0;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-item p {
    max-width: none;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .mission {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .mission-title {
    font-size: 1.8rem;
  }

  .stat-item {
    padding: 30px 20px;
  }
}

/* Vision Section */
.vision {
  padding: 80px 0;
  background: #1e280a;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Pattern */
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: linear-gradient(45deg, var(--primary) 25%, transparent 25%),
    linear-gradient(-45deg, var(--primary) 25%, transparent 25%);
  background-size: 40px 40px;
}

.vision .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
  animation: fadeIn 0.8s ease-out;
}

/* Vision Subtitle */
.vision-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(120deg, var(--accent) 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-weight: 600;
  animation: gradientFlow 8s linear infinite;
  background-size: 200% auto;
}

/* Vision Title */
.vision-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  font-weight: normal;
  margin-bottom: 40px;
  font-family: "Unbounded", sans-serif;
  background: linear-gradient(120deg, #ffffff 0%, #cccccc 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s linear infinite;
}

/* Action Buttons Container */
.vision .action-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Button Styles */
.vision .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

/* Primary Button */
.vision .btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, #ffd700 100%);
  color: #111827;
  box-shadow: 0 4px 12px rgba(255, 196, 54, 0.2);
  position: relative;
  overflow: hidden;
}

.vision .btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

/* Secondary Button */
.vision .btn-secondary {
  background: linear-gradient(120deg, var(--primary) 0%, #2e8b57 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 93, 26, 0.2);
}

/* Outline Button */
.vision .btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: transparent;
  backdrop-filter: blur(5px);
}

/* Button Hover Effects */
.vision .btn:hover {
  transform: translateY(-3px);
}

.vision .btn:hover i {
  transform: translateX(4px);
}

.vision .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255, 196, 54, 0.3);
}

.vision .btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(26, 93, 26, 0.3);
}

.vision .btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 196, 54, 0.08);
}

/* Animations */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    transform: rotate(45deg) translateX(-150%);
  }
  100% {
    transform: rotate(45deg) translateX(150%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision {
    padding: 60px 0;
  }

  .vision-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    padding: 0;
  }

  .vision .action-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
  }

  .vision .btn {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .vision {
    padding: 50px 0;
  }

  .vision-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .vision-title {
    font-size: 1.4rem;
  }

  .vision .btn {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}

/* Why Us Section */
.why-us {
  padding: 50px 0;
  background: #f9fafb;
}

.why-us-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 500px;
}

.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: "Unbounded", sans-serif;
  line-height: 1.2;
}

/* Compact Bento Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 15px;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Special Card Layouts */
.feature-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #1a5d1a 0%, #2e8b57 100%);
  color: white;
  min-height: 300px;
}

.feature-card:nth-child(2) {
  background: #fff8e8;
  grid-column: span 1;
  grid-row: span 2;
}

/* Feature Icons */
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature-card:nth-child(1) .feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.feature-card:not(:first-child) .feature-icon {
  background: rgba(26, 93, 26, 0.08);
}

.feature-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.feature-card:nth-child(1) .feature-icon i {
  font-size: 1.4rem;
  color: white;
}

/* Content Styling */
.feature-card h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}

.feature-card:nth-child(1) h3 {
  color: white;
  font-size: 1.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.feature-card:nth-child(1) p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Hover Effects */
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(3deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature-card:nth-child(1) {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 40px 0;
  }

  .section-header {
    text-align: center;
    margin: 0 auto 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .feature-card {
    grid-column: span 1 !important;
    padding: 15px;
    min-height: auto;
  }

  .feature-card:nth-child(1) {
    min-height: auto;
    padding: 20px;
  }
}

/* Guiding Principles Section */
.principles {
  padding: 50px 0;
  background: #fff;
}

.principles-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.principles .section-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 500px;
}

.principles .section-subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.principles .section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 0;
}

/* Horizontal Cards Grid */
.principles-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Horizontal Card Design */
.principle-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Compact Icon */
.principle-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.principle-icon i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

/* Card Content */
.principle-card .content {
  flex: 1;
}

.principle-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.principle-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Hover Effects */
.principle-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.principle-card:hover .principle-icon {
  background: var(--primary);
}

.principle-card:hover .principle-icon i {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .principles {
    padding: 40px 0;
  }

  .principles .section-header {
    margin-bottom: 30px;
  }

  .principle-card {
    padding: 15px;
  }

  .principle-icon {
    width: 40px;
    height: 40px;
  }

  .principle-icon i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .principles {
    padding: 30px 0;
  }

  .principle-card h3 {
    font-size: 1rem;
  }

  .principle-card p {
    font-size: 0.85rem;
  }
}

/* Leadership Section */
.leadership {
  padding: 80px 0;
  background: #ebf8d1;
  position: relative;
  overflow: hidden;
}

/* Container */
.leadership-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header */
.leadership-header {
  text-align: left;
  margin-bottom: 60px;
}

.leadership-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.leadership-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0;
}

/* Content Grid */
.leadership-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Text Content */
.leadership-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.leadership-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.leadership-text p:last-child {
  margin-bottom: 0;
}

/* Image */
.leadership-image {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.leadership-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Decorative Elements */
.leadership-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  top: 40%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: -5s;
}

.shape-3 {
  bottom: 15%;
  left: 15%;
  width: 70px;
  height: 70px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  animation-delay: -10s;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -10px) rotate(5deg);
  }
}

/* Hover Effects */
.leadership-image:hover img {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 992px) {
  .leadership {
    padding: 60px 0;
  }

  .leadership-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leadership-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .leadership-header {
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .leadership {
    padding: 50px 0;
  }

  .leadership-title {
    font-size: 1.8rem;
  }

  .leadership-text p {
    font-size: 0.95rem;
  }

  .shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .leadership {
    padding: 40px 0;
  }

  .leadership-subtitle {
    font-size: 0.8rem;
  }

  .leadership-title {
    font-size: 1.6rem;
  }

  .leadership-text p {
    font-size: 0.9rem;
  }
}

/* Success Stories Section */
.success-stories {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fff8 0%, #f0f7f0 100%);
  position: relative;
  overflow: hidden;
}

/* Container */
.success-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.stories-header .section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--primary);
  margin: 0;
}

.stories-header .btn {
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-content {
  position: relative;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}

/* Author Info */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Hover Effects */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stories-header .btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Animations */
.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .success-stories {
    padding: 60px 0;
  }

  .testimonials-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .stories-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .success-stories {
    padding: 40px 0;
  }

  .stories-header .section-title {
    font-size: 1.8rem;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* Team Section */
.team {
  padding: 60px 0;
  background-color: #fff;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.team-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 600px;
}

.team-subtitle {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.team .section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 0;
}

/* Two Column Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Horizontal Team Card */
/* Vertical Team Card Layout */
.team-card {
  display: flex;
  flex-direction: column; /* Set vertical layout */
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center; /* Center-align content */
}

.team-image {
  width: 100%;
  height: 400px; /* Adjust height for a uniform image size */
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.team-role {
  font-size: 1rem;
  color: #231c0b;
  margin-bottom: 12px;
  font-weight: 500;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.team-social a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Hover Effects */
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr; /* Single column for smaller screens */
  }
}

@media (max-width: 480px) {
  .team-card {
    text-align: center;
  }
  .team-social {
    justify-content: center;
  }
}

/* Partner Us Section */
.partner-us {
  padding: 100px 0;
  background: linear-gradient(
      135deg,
      rgba(26, 93, 26, 0.97),
      rgba(26, 93, 26, 0.93)
    ),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80")
      center/cover fixed;
  position: relative;
  overflow: hidden;
}

/* Content Grid */
.partner-us__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Left Side Content */
.partner-us__content {
  color: white;
  position: relative;
  z-index: 2;
}

.partner-us__content h2 {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  margin-bottom: 25px;
  font-family: "Unbounded", sans-serif;
  background: linear-gradient(45deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientFlow 8s linear infinite;
}

.partner-us__description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Partner Image */
.partner-us__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  aspect-ratio: 4/3;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.partner-us__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}

.partner-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Stats */
.partner-us__stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.partner-stat {
  position: relative;
}

.partner-stat__number {
  display: block;
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Unbounded", sans-serif;
  line-height: 1;
}

.partner-stat__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Hover Effects */
.partner-us__image:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.partner-us__image:hover img {
  transform: scale(1.1);
}

/* Background Pattern */
.partner-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.1;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .partner-us__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }

  .partner-us__content {
    text-align: center;
    order: -1;
  }

  .partner-us__description {
    margin: 0 auto 30px;
  }

  .partner-us__stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .partner-us__form-container {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .partner-us {
    padding: 60px 0;
  }

  .partner-us__content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .partner-us__description {
    font-size: 1rem;
    padding: 0 20px;
  }

  .partner-us__form-container {
    padding: 25px;
    margin: 0 20px;
  }

  .partner-us__form-container h3 {
    font-size: 1.5rem;
  }

  #partner-form {
    gap: 15px;
  }

  #partner-form input,
  #partner-form textarea {
    padding: 12px;
    font-size: 0.95rem;
  }

  .partner-stat {
    width: 100%;
    text-align: center;
  }

  .partner-stat__number {
    font-size: 2.2rem;
  }

  .partner-stat__label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .partner-us {
    padding: 40px 0;
  }

  .partner-us__content h2 {
    font-size: 1.8rem;
  }

  .partner-us__form-container {
    padding: 20px;
  }

  .partner-us__stats {
    flex-direction: column;
    gap: 20px;
  }

  #partner-form button {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
  }
}

/* Form Container */
.partner-us__form-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.partner-us__form-container h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Unbounded", sans-serif;
}

/* Form Elements */
#partner-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#partner-form input,
#partner-form textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#partner-form input:focus,
#partner-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

#partner-form input::placeholder,
#partner-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#partner-form textarea {
  height: 120px;
  resize: vertical;
  min-height: 120px;
}

#partner-form button {
  padding: 16px 32px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 196, 54, 0.2);
}

#partner-form button i {
  transition: transform 0.3s ease;
}

#partner-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 196, 54, 0.3);
}

#partner-form button:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .partner-us__form-container {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .partner-us__form-container {
    padding: 30px 20px;
  }

  .partner-us__form-container h3 {
    font-size: 1.6rem;
  }

  #partner-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .partner-us__form-container {
    padding: 25px 15px;
  }

  #partner-form input,
  #partner-form textarea {
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* Footer Styles */
/* footer {
  background: linear-gradient(
    to bottom,
    rgba(30, 40, 10, 0.98),
    rgba(26, 35, 8, 0.95)
  );
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/pattern.svg") repeat;
  opacity: 0.03;
  animation: floatBackground 30s linear infinite;
}

.footer__container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo img {
  max-width: 150px;
  height: auto;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #fff;
}

.footer__links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.3s ease;
  position: relative;
  width: fit-content;
}

.footer__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary-light);
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.footer__social a:hover {
  transform: translateY(-3px);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.footer__social i {
  font-size: 1.2rem;
}

.footer__copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  margin-top: 20px;
}

.footer__copyright p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
} */

/* Responsive Footer */
/* @media (max-width: 768px) {
  footer {
    padding: 60px 0 30px;
  }

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__copyright {
    margin-top: 30px;
    padding-top: 30px;
  }
} */

/* Add hover animation for social icons */
/* @keyframes socialPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(163, 255, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0);
  }
}

.footer__social a:hover {
  animation: socialPulse 1.5s infinite;
} */

/* Help Us Section */
.help-us {
  padding: 80px 0;
  background: #f8f9fa;
}

.help-us__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Help Card */
.help-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.help-card__content {
  padding: 40px;
}

.help-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 93, 26, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.help-card__icon i {
  font-size: 1.8rem;
  color: var(--primary);
}

.help-card h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "Unbounded", sans-serif;
}

.help-card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Stats */
.help-card__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.help-stat {
  text-align: left;
}

.help-stat__number {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Unbounded", sans-serif;
}

.help-stat__label {
  font-size: 0.9rem;
  color: #666;
}

/* Button */
.help-card__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.help-card__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 93, 26, 0.15);
}

.help-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.help-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.help-card:hover .help-card__image img {
  transform: scale(1.05);
}

/* Volunteer Card Variant */
.help-card--volunteer {
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f3db 100%);
}

.help-card--volunteer .help-card__icon {
  background: rgba(255, 196, 54, 0.1);
}

.help-card--volunteer .help-card__icon i {
  color: var(--accent);
}

.help-card--volunteer .help-stat__number {
  color: var(--accent);
}

/* Responsive Design */
@media (max-width: 992px) {
  .help-us__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .help-card__content {
    padding: 30px;
  }

  .help-card h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .help-us {
    padding: 60px 0;
  }

  .help-card__stats {
    gap: 20px;
  }

  .help-stat__number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .help-us {
    padding: 40px 0;
  }

  .help-card__content {
    padding: 25px;
  }

  .help-card h2 {
    font-size: 1.6rem;
  }

  .help-card__stats {
    flex-direction: column;
    gap: 15px;
  }

  .help-card__button {
    width: 100%;
    justify-content: center;
  }
}

/* Help Us Section Header */
.help-us__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.help-us__subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.help-us__title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: var(--primary);
  font-family: "Unbounded", sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

.help-us__description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .help-us__header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .help-us__title {
    font-size: 2rem;
  }

  .help-us__description {
    font-size: 1rem;
  }
}
