/* Reset and base styles */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root {
  /* Primary Colors */
  --primary-blue: #2B57FF;
  --primary-orange: #1E90FF;
  --primary-teal: #00FFD1;
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #128c7e;
  
  /* Secondary Colors */
  --secondary-blue: #5E90FF;
  --secondary-orange: #87CEEB;
  --secondary-teal: #7bb0ff;
  
  /* Background Colors */
  --bg-dark: #03132b;
  --bg-gradient: linear-gradient(to right, var(--bg-dark), hsl(226, 76%, 17%), #4220aa);
  --bg-card: rgba(30, 34, 70, 0.35);
  --bg-input: rgba(21, 30, 58, 0.7);
  
  /* Text Colors */
  --text-primary: #fff;
  --text-secondary: #E1E6F0;
  --text-muted: #b3cfff;

  /* Border Colors */
  --border-light: rgba(123, 176, 255, 0.18);
  
  /* Shadow Colors */
  --shadow-primary: rgba(79,140,255,0.10);
  --shadow-orange: rgba(255, 107, 53, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  /* font-family: 'Inter', sans-serif; */
   font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  background: var(--bg-gradient);
  color: var(--text-primary);
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Note: Responsive styles have been moved to responsive.css */

a {
  color: #7bb0ff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 0.7em 2em;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  box-shadow: 0 2px 12px rgba(79,140,255,0.10);
}
.btn-primary {
  background: var(--primary-blue);
  color: var(--text-primary);
  border: none;
}
.btn-primary:hover {
  background: var(--secondary-blue);
  color: var(--text-primary);
  box-shadow: 0 4px 24px rgba(46, 87, 255, 0.18);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1.5px solid var(--secondary-teal);
}
.btn-secondary:hover {
  background: var(--secondary-teal);
  color: var(--bg-dark);
  box-shadow: 0 4px 24px var(--shadow-primary);
  transform: translateY(-2px) scale(1.04);
}

.btn.nav-cta {
  padding: 0.5em 1.2em;
  font-size: 1rem;
  border-radius: 6px;
  line-height: 1.2;
  /* margin-left: 2em; */
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 5vw;
  background: transparent;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 16px rgba(79,140,255,0.08);
  border-radius: 0 0 18px 18px;
  margin-top: 0;
  backdrop-filter: blur(8px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo img {
  height: 40px !important;
  width: auto;
}
.logo span {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 0.2em;
}
.nav-links {
  display: flex;
  gap: 2em;
  list-style: none;
  margin-bottom: 0.2em;
}
.nav-links li a {
  font-family:Georgia, 'Times New Roman', Times, serif;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s cubic-bezier(0.4,0,0.2,1), text-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.nav-links li a::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00FFD1 0%, #2B57FF 100%);
  border-radius: 4px;
  box-shadow: 0 0 8px 2px #2B57FF66;
  opacity: 0;
  transform: translateX(-50%) scaleY(1);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1), height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, box-shadow 0.3s;
  pointer-events: none;
}
.nav-links li a:hover, .nav-links li a:focus {
  color: var(--primary-orange);
  text-shadow: 0 2px 12px var(--primary-orange), 0 1px 2px var(--primary-blue);
}
.nav-links li a:hover::after, .nav-links li a:focus::after {
  width: 120%;
  height: 4px;
  opacity: 1;
  background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
  box-shadow: 0 0 16px 4px var(--primary-blue), 0 0 8px 2px var(--primary-orange);
}
.nav-cta {
  margin-left: 2em;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #7bb0ff;
  border-radius: 2px;
}

/* Container for reduced width and centering */
.container {
  max-width: 90vw;
  width: 100%;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 60vh;
  padding: 4em 0 2em 0;
  background: none;
  gap: 2.5vw;
}
.hero-image {
  flex: 1 1 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 350px;
  background: none;
  border-radius: 18px;
  margin-right: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(79,140,255,0.10);
}
.africa-network-svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 32px #2B57FF) drop-shadow(0 0 16px #5E90FF);
}
.hero-content {
  flex: 1 1 70%;
  max-width: 1100px;
  position: relative;
  z-index: 1;
  background: none;
  border-radius: 18px;
  padding: 1.2em 0.2em 1.2em 0.2em;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.6;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 16px #2B57FF99, 0 1px 2px #000a;
  margin-bottom: 1.5em;
  line-height: 1.1;
}
.hero-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.5em;
}
.hero-btn-wrapper .btn {
  margin-top: 0.5em;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 0 16px #2B57FF99, 0 0 8px #5E90FF99;
}

/* Add responsive styles for hero section */
@media (max-width: 768px) {
  .hero {
    flex-direction: column; /* Stack items vertically */
    padding-top: 2em;
    min-height: auto; /* Adjust height as needed */
    gap: 1.5em; /* Add gap between stacked items */
  }

  .hero-image {
    margin-right: 0; /* Remove margin when stacked */
    margin-bottom: 1.5em; /* Add space below the image */
  }
  
  .hero-content {
    padding-top: 0;
    margin-top: 0; /* Remove margin-top if it was added elsewhere */
    text-align: center; /* Center text when stacked */
  }
  
  .hero-content h1 {
    margin-bottom: 1em;
  }
  
  .hero-btn-wrapper {
     justify-content: center; /* Center buttons when stacked */
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 1.5em;
    gap: 1em;
  }
  
   .hero-image {
    margin-bottom: 1em; /* Slightly less space on very small screens */
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8em;
  }

   .hero-btn-wrapper {
    flex-direction: column;
    gap: 0.8em;
    align-items: center;
  }

  .hero-btn-wrapper .btn {
    width: 100%;
  }
}

/* Main Sections */
main {
  padding: 2em 5vw;
  width: 100%;
}
section {
  margin-bottom: 0em;
  padding: 3em 0.5em;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 3em; /* Space between columns */
  align-items: center; /* Vertically align items in the center */
  margin-top: 2em; /* Space below the heading */
}

.about-text {
  /* Specific styles for the text column if needed */
}

.about-image {
  flex: 1 1 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 350px;
  background: none;
  border-radius: 18px;
  margin-right: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(79,140,255,0.10);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.about-image .prev-btn,
.about-image .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.about-image .prev-btn {
  left: 10px;
}

.about-image .next-btn {
  right: 10px;
}

.about-image .prev-btn:hover,
.about-image .next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.about p {
  margin: 1em 0 1.5em 0;
  font-size: 1.1rem;
  color: #E1E6F0;
}

/* Services */
.services {
  background: rgba(30, 34, 70, 0.35);
  border-radius: 18px;
  padding: 3em 1em;
  margin-bottom: 4em;
  box-shadow: 0 4px 24px 0 rgba(79,140,255,0.10);
}
.services h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
.services-description {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 2.5em auto;
  color: #E1E6F0;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 1em;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  justify-content: center;
  align-items: stretch;
  margin-top: 2em;
}
.service-item {
  background: rgba(21, 30, 58, 0.7);
  border-radius: 16px;
  padding: 2.5em 2em;
  min-width: 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 24px 0 rgba(79,140,255,0.10);
  border: 1.5px solid rgba(123, 176, 255, 0.18);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.service-item .icon {
  font-size: 3rem;
  margin-bottom: 1.2em;
  color: var(--primary-orange);
  transition: color 0.2s, filter 0.2s;
}
.service-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 0.5em;
  margin-bottom: 1.8em;
}
.service-item:hover {
  box-shadow: 0 8px 32px 0 var(--shadow-orange), 0 2px 8px var(--shadow-primary);
  background: rgba(255, 107, 53, 0.08);
}
.service-item:hover .icon {
  color: var(--primary-blue);
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 0 1em;
  z-index: 2;
}

.service-description.show {
  opacity: 1;
  visibility: visible;
  top: 35%;
  background-color: rgba(3, 19, 43, 0.95);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid var(--primary-orange);
  box-shadow: 0 0 20px var(--primary-orange);
  animation: borderGrow 0.3s ease-out;
}

@keyframes borderGrow {
  from {
    border-width: 0;
    box-shadow: 0 0 0 var(--primary-orange);
  }
  to {
    border-width: 2px;
    box-shadow: 0 0 20px var(--primary-orange);
  }
}

/* Removed styles for .service-descriptions-container p and .active-service-description */

/* Impact & Why Choose Us */
.impact, .why-choose {
  padding: 4em 0;
  text-align: center;
  background: var(--bg-card);
  border-radius: 16px;
  margin: 2em 0;
  box-shadow: 0 4px 24px var(--shadow-primary);
}

.impact ul, .why-choose ul {
  list-style: none;
  padding: 0;
  margin: 2em 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 800px;
  margin: 2em auto;
}

.impact ul li, .why-choose ul li {
  font-size: 1.2rem;
  color: var(--text-primary);
  padding: 1.5em;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border-light);
  position: relative;
}

.impact ul li i {
  color: var(--primary-orange);
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.impact ul li:hover, .why-choose ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow-primary);
}

.impact h2, .why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 1em;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.3s;
}

.impact h2:hover, .why-choose h2:hover {
  transform: scale(1.05);
}

.why-choose ul li strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  color: var(--primary-orange);
}

.why-choose ul li p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 0.5em;
}

.why-choose ul li .why-choose-item-content {
  display: flex;
  flex-direction: column; /* Stack title above description */
  align-items: center; /* Center content horizontally */
  gap: 0.8em; /* Space between title and description */
}

.why-choose-title {
  display: flex;
  align-items: center; /* Vertically center icon and text */
  justify-content: center; /* Center the flex items within the div */
  text-align: center; /* Keep text-align for centering the block */
}

.why-choose-title strong {
  font-size: 1.4rem;
  color: var(--primary-orange);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 0; /* Remove margin here, gap handles spacing */
  display: inline; /* Allow strong to be inline with the icon */
}

.why-choose-title i.fas.fa-check {
  color: var(--primary-orange);
  font-size: 1.2em; /* Slightly smaller than title font size */
  margin-right: 0.3em; /* Space between icon and text */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.why-choose-description {
  /* No flex needed for column layout */
  text-align: center;
}

.why-choose ul li p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0; /* Ensure no extra margin */
}

.why-choose ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow-primary);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .impact, .why-choose {
    padding: 3em 1em;
    margin: 1em;
  }

  .impact ul li, .why-choose ul li {
    font-size: 1.1rem;
    padding: 0.8em;
  }

  .why-choose ul li strong {
    font-size: 1.2rem;
  }

  .why-choose ul li p {
    font-size: 1rem;
  }

  .step-arrow {
    height: 30px;
    font-size: 1.2rem;
  }

  .why-choose ul li {
    padding: 1.2em;
  }

  /* On smaller screens, they are already stacked, just ensure centering */
  .why-choose ul li .why-choose-item-content {
  align-items: center;
    gap: 0.8em;
  }

  .why-choose-title {
     text-align: center;
     flex-basis: auto; /* Ensure flex basis is auto */
     /* Also adjust flex properties for smaller screens if needed */
     display: flex; /* Keep flex display */
     flex-direction: row; /* Keep row direction */
     justify-content: center; /* Center content */
     align-items: center; /* Center items */
  }

  .why-choose-description {
     text-align: center;
  }

  .why-choose ul li strong {
    font-size: 1.2rem;
    display: inline; /* Keep inline on mobile */
  }

  .why-choose ul li p {
    font-size: 1rem;
  }
}

/* Get Started */
.get-started {
  background: none;
  border-radius: 0;
  padding: 1.5em 1.5em 1em 1.5em;
  text-align: center;
  box-shadow: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: center;
}

.get-started h2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 16px #2B57FF99, 0 1px 2px #000a;
  margin-bottom: 1.5em;
  line-height: 1.1;
}

.contact-info-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin-bottom: 1.5em;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}

/* Contact Form Section Styles */
.contact-form-section {
  padding: 0 1em;
  text-align: center;
  background: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-form-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px #2B57FF99, 0 1px 2px #000a;
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.1;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  max-width: 1200px;
  margin: 2em auto 0 auto;
  text-align: left;
  align-items: start;
}

.contact-form-wrapper {
  padding: 2em;
  background: rgba(30, 34, 70, 0.35);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border: none;
  width: 100%;
  margin-top: 0;
}

.contact-info-area {
  padding: 2em;
  background: rgba(30, 34, 70, 0.35);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border: none;
  height: 100%;
}

.contact-info-area h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1em;
}

.contact-info-area > p {
  color: #E1E6F0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3em;
}

.contact-info-area .contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-bottom: 3em;
  align-items: flex-start;
  text-align: left;
}

.contact-info-area .contact-info-row p {
    margin: 0;
    color: #E1E6F0;
    font-size: 1rem;
    font-weight: 500;
}

.contact-info-area .contact-info-row a {
    font-size: 1rem;
}

.contact-info-area .social-icons {
  margin-top: 2em;
  margin-bottom: 0;
  justify-content: flex-start;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  color: #E1E6F0;
  font-size: 1.1rem;
}

.contact-detail i {
  color: var(--primary-orange);
  font-size: 1.3rem;
}

@media (max-width: 1000px) {
  .contact-container {
    gap: 4em;
  }
  
  .contact-info-area {
    text-align: center;
  }
  
  .contact-info-area h3,
  .contact-info-area > p {
    text-align: center;
  }
  
  .contact-info-area .contact-info-row {
    align-items: center;
    text-align: center;
  }
  
  .contact-info-area .social-icons {
    justify-content: center;
  }
  
  .contact-detail {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contact-form-section {
    padding: 0em 0.5em;
  }
  
  .contact-form-wrapper {
    padding: 2em;
  }
  
  .contact-form .form-row {
    flex-direction: column;
    gap: 1.5em;
  }
  
  .contact-info-area h3 {
    font-size: 1.6rem;
  }
  
  .contact-info-area > p {
    font-size: 1rem;
  }
  
  .contact-detail {
    font-size: 1rem;
  }
}

/* Remove old contact form styles */
.contact-form {
  max-width: 100%;
  margin: 0;
  padding: 1.5em;
  background: rgba(30, 34, 70, 0.35);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border: none;
}

.form-group {
  margin-bottom: 1em;
}

.form-group label {
  display: block;
  margin-bottom: 0.5em;
  color: #fff;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6em;
  border: 1.5px solid rgba(123, 176, 255, 0.18);
  border-radius: 8px;
  background: rgba(21, 30, 58, 0.7);
  color: #fff;
  font-size: 0.95rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2B57FF;
  box-shadow: 0 0 0 2px rgba(43, 87, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b3cfff;
}

.submit-btn {
  background: var(--primary-blue);
  color: var(--text-primary);
  padding: 0.8em 2em;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 80%;
  transition: background 0.3s, transform 0.2s;
  margin: 0 auto;
}

.submit-btn:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}

.success-message {
  display: none;
  text-align: center;
  padding: 1em;
  margin-top: 1em;
  background: rgba(0, 255, 209, 0.1);
  border: 1px solid #00FFD1;
  border-radius: 8px;
  color: #00FFD1;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

/* Gender selection styling */
.gender-options {
  display: flex;
  gap: 0.5em;
}

.gender-option {
  flex: 1;
  position: relative;
}

.gender-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.gender-option label {
  display: block;
  padding: 0.6em;
  text-align: center;
  background: rgba(21, 30, 58, 0.7);
  border: 1.5px solid rgba(123, 176, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.gender-option input[type="radio"]:checked + label {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--text-primary);
}

.gender-option label:hover {
  border-color: var(--primary-orange);
}

/* Social Icons */
.social-icons {
  margin-top: 2em;
  display: flex;
  gap: 2em;
  justify-content: center;
  align-items: center;
}

.get-started p {
  color: #E1E6F0;
  margin-bottom: 0.5em;
}
.get-started-footer-row {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}
.get-started-footer-row .btn {
  margin: 0;
}
.social-icons a {
  color: #5E90FF;
  font-size: 1.6rem;
  transition: color 0.2s, transform 0.2s;
}
.social-icons a:hover {
  color: #00FFD1;
  transform: scale(1.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 1em 0;
  color: #b3cfff;
  font-size: 1rem;
  background: none;
  text-shadow: 0 2px 8px rgba(79,140,255,0.10);
  margin-top: 2em;
  border-top: 1px solid rgba(123, 176, 255, 0.1);
}

/* Headings */
h1, h3 {
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
h2 {
  color: var(--primary-orange);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

/* Secondary Text */
.secondary-text, .about p, .get-started p {
  color: #E1E6F0;
}

/* Icon Colors */
.icon-primary {
  color: #00FFD1 !important;
}
.icon-accent {
  color: #5E90FF !important;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links li:first-child a {
  color: #00FFD1;
  text-shadow: 0 2px 12px #00FFD1cc, 0 1px 2px #2B57FF99;
}
.nav-links li:first-child a::after {
  width: 120%;
  height: 4px;
  opacity: 1;
  box-shadow: 0 0 16px 4px #2B57FF99, 0 0 8px 2px #00FFD1cc;
}

.testimonials {
  margin-bottom: 0;
  padding: 3em 0.5em;
  text-align: center;
}
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
}
@media (max-width: 1100px) {
  .testimonials-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .testimonials-list {
    grid-template-columns: 1fr;
  }
}
.testimonial-card {
  background: rgba(30, 34, 70, 0.55);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 2em 1.5em;
  max-width: 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
  border: 1.5px solid rgba(123, 176, 255, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 36px 0 rgba(46, 87, 255, 0.18);
}
.testimonial-content p {
  color: #E1E6F0;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 1.5em;
}
.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1em;
}
.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2B57FF;
}
.client-name {
  font-weight: 600;
  color: #fff;
  display: block;
}
.client-role {
  font-size: 0.95em;
}

.pricing-hero {
  background: none;
  margin-bottom: 2em;
  padding-bottom: 0;
}
.pricing-section {
  margin-bottom: 3em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  justify-content: center;
  margin: 2em 0 0 0;
}
.pricing-card {
  background: rgba(30, 34, 70, 0.55);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 2em 1.5em;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid rgba(123, 176, 255, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 36px 0 rgba(46, 87, 255, 0.18);
}
.pricing-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7em;
}
.price {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.sms-count {
  color: #5E90FF;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    min-width: 0;
  }
}

/* Center all section headings */
h2 {
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2em;
  right: 2em;
  background: rgba(255, 107, 53, 0.8);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}
.back-to-top:hover {
  background: rgba(0, 255, 209, 0.8);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive adjustments for the grid */
@media (max-width: 768px) {
  .get-started {
    gap: 1em;
  }
  .get-started-footer-row {
    flex-direction: column;
    gap: 1em;
  }
  .get-started-footer-row .btn,
  .social-icons {
    width: 100%;
    justify-content: center;
  }
}

/* Floating WhatsApp Icon */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--whatsapp-green);
  color: var(--text-primary);
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.floating-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: scale(1.1);
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}

.contact-item a {
  color: #7bb0ff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: #fff;
}

.contact-item .operating-hours {
  font-size: 0.9em;
  color: #b3cfff;
  margin-top: 0.2em;
}

/* Random Quote Display */
.random-quote-display {
  text-align: left;
  margin-top: 2.5em;
  padding: 2em;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  border: 1.5px solid var(--border-light);
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.random-quote-display .quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 0.8em;
}

.random-quote-display .quote-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-orange);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Loader styles */
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2B57FF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contact Form Styles */
.contact-form {
  max-width: 100%;
  margin: 0;
  padding: 1.5em;
  background: rgba(30, 34, 70, 0.35);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border: none;
}

.form-group {
  margin-bottom: 1em;
}

.form-group label {
  display: block;
  margin-bottom: 0.5em;
  color: #fff;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6em;
  border: 1.5px solid rgba(123, 176, 255, 0.18);
  border-radius: 8px;
  background: rgba(21, 30, 58, 0.7);
  color: #fff;
  font-size: 0.95rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2B57FF;
  box-shadow: 0 0 0 2px rgba(43, 87, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b3cfff;
}

.submit-btn {
  background: var(--primary-blue);
  color: var(--text-primary);
  padding: 0.8em 2em;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 80%;
  transition: background 0.3s, transform 0.2s;
  margin: 0 auto;
}

.submit-btn:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}

.success-message {
  display: none;
  text-align: center;
  padding: 1em;
  margin-top: 1em;
  background: rgba(0, 255, 209, 0.1);
  border: 1px solid #00FFD1;
  border-radius: 8px;
  color: #00FFD1;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

/* Gender selection styling */
.gender-options {
  display: flex;
  gap: 0.5em;
}

.gender-option {
  flex: 1;
  position: relative;
}

.gender-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.gender-option label {
  display: block;
  padding: 0.6em;
  text-align: center;
  background: rgba(21, 30, 58, 0.7);
  border: 1.5px solid rgba(123, 176, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.gender-option input[type="radio"]:checked + label {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--text-primary);
}

.gender-option label:hover {
  border-color: var(--primary-orange);
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  
  .contact-form-wrapper,
  .contact-info-area {
    padding: 1.5em;
  }
}

.quote-section {
  padding: 0;
  background: none;
}

.quote-section .container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.quote-btn {
  font-size: 1rem;
  padding: 0.6em 2em;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(46, 87, 255, 0.18);
}

.random-quote-display {
  text-align: center;
  padding: 1.5em;
  background: rgba(30, 34, 70, 0.35);
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border: none;
  width: 100%;
}

.random-quote-display .quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.random-quote-display .quote-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-orange);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .quote-section {
    padding: 1.5em 1em;
  }
  
  .random-quote-display {
    padding: 1em;
  }
  
  .random-quote-display .quote-text {
    font-size: 1rem;
  }
  
  .random-quote-display .quote-author {
    font-size: 0.85rem;
  }
}

h2.section-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
  color: var(--primary-orange);
  text-shadow: none;
}

.impact h2, .why-choose h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-orange);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1em;
  text-transform: none;
  letter-spacing: 1px;
}

.impact h2:hover, .why-choose h2:hover {
  color: var(--secondary-orange);
  transform: scale(1.02);
  transition: color 0.3s ease, transform 0.3s ease;
} 

/* Responsive adjustments for Pricing Hero */
@media (max-width: 768px) {
  .pricing-hero .hero-content {
    margin-top: 1.5em; /* Further reduced space between image and text */
  }
}

@media (max-width: 480px) {
  .pricing-hero .hero-content {
    margin-top: -3px; /* Adjusted margin to slightly overlap or be very close */
  }
}

.why-choose-details {
  background: rgba(30, 34, 70, 0.35);
  border-radius: 18px;
  /*padding: 3em 2em;*/
  margin: 2em 0;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  border: 1.5px solid rgba(123, 176, 255, 0.18);
}

.why-choose-details h2 {
  text-align: center;
  margin-bottom: 2em;
  color: var(--primary-orange);
  font-size: 2.5rem;
  font-weight: 700;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin-top: 2em;
}

.why-choose-item {
  background: rgba(21, 30, 58, 0.7);
  border-radius: 12px;
  padding: 2em;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1.5px solid rgba(123, 176, 255, 0.18);
}

.why-choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(46, 87, 255, 0.18);
}

.why-choose-item i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1em;
}

.why-choose-item h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1em;
}

.why-choose-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.why-choose-steps {
  list-style: none;
  padding: 0;
  margin: 2em 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 800px;
  margin: 2em auto;
  position: relative;
}

.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: var(--primary-orange);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

.step-arrow i {
  background: var(--bg-card);
  padding: 0.5em;
  border-radius: 50%;
  box-shadow: 0 4px 16px var(--shadow-primary);
  border: 1px solid var(--border-light);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.why-choose ul li .why-choose-item-content {
  display: flex;
  flex-direction: column; /* Stack title above description */
  align-items: center; /* Center content horizontally */
  gap: 0.8em; /* Space between title and description */
}

.why-choose-title {
  flex: 0 0 30%; /* Title takes 30% width, doesn't grow or shrink */
  text-align: left;
}

.why-choose-title strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-orange);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.why-choose-title i.fas.fa-check {
  color: var(--primary-orange);
  font-size: 1.2em; /* Slightly smaller than title font size */
  margin-right: 0.3em; /* Space between icon and text */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.why-choose-description {
  flex: 1; /* Description takes remaining space, can grow/shrink */
  text-align: left;
}

.why-choose ul li p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 0;
}

.why-choose ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow-primary);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .step-arrow {
    height: 30px;
    font-size: 1.2rem;
  }
  
  .why-choose ul li {
    padding: 1.2em;
  }
  
  .why-choose ul li .why-choose-item-content {
    flex-direction: column;
    gap: 0.8em;
  }
  
  .why-choose-title {
    flex-basis: auto; /* Remove fixed width on mobile */
    text-align: center;
  }
  
  .why-choose-description {
    text-align: center;
  }
  
  .why-choose ul li strong {
    font-size: 1.2rem;
  }
  
  .why-choose ul li p {
    font-size: 1rem;
  }
}

/* Simplified Donation Page Styles */
.donation-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/africamap.png');
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 2rem;
}

.donation-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.donation-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.donation-form-section {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.donation-form-container {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(79,140,255,0.10);
    border: 1.5px solid var(--border-light);
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 0.8rem;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.amount-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--text-primary);
}

.donation-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 1rem;
}

.donation-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.donation-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.submit-donation {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: var(--primary-orange);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-donation:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .donation-hero h1 {
        font-size: 2rem;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-form-section {
        padding: 1rem;
    }
    
    .donation-form-container {
        padding: 1.5rem;
    }
}

/* Payment Methods Styles */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.payment-method {
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--bg-input);
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-label:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.payment-method input[type="radio"]:checked + .payment-label {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.payment-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.payment-label span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* Payment Instructions Styles */
.payment-instructions {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1.5px solid var(--border-light);
}

.payment-instructions h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mpesa-instructions ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.mpesa-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.mpesa-instructions strong {
    color: var(--primary-orange);
}

.mpesa-pay-btn, .paypal-pay-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.mpesa-pay-btn {
    background: var(--whatsapp-green);
}

.mpesa-pay-btn:hover {
    background: var(--whatsapp-green-hover);
}

.paypal-pay-btn {
    background: #0070ba;
}

.paypal-pay-btn:hover {
    background: #005ea6;
}

/* Form Summary Styles */
.form-summary {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1.5px solid var(--border-light);
}

.form-summary h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.summary-details {
    color: var(--text-secondary);
}

.summary-details p {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-details strong {
    color: var(--text-primary);
}

.summary-details span {
    color: var(--primary-orange);
    font-weight: 500;
}

@media (max-width: 480px) {
    .payment-instructions,
    .form-summary {
        padding: 1rem;
    }
    
    .mpesa-instructions ol {
        padding-left: 0;
    }
    
    .summary-details p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

.donation-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 1rem;
    appearance: none; /* Remove default dropdown arrow */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2C114.7L159.3%2C242.5c-8.7%2C8.7-22.9%2C8.7-31.7%2C0L5.4%2C114.7c-8.7-8.7-8.7-22.9%2C0-31.7l31.7-31.7c8.7-8.7%2C22.9-8.7%2C31.7%2C0l82.9%2C83l83-83c8.7-8.7%2C22.9-8.7%2C31.7%2C0l31.7%2C31.7C295.7%2C91.8%2C295.7%2C106%2C287%2C114.7z%22%2F%3E%3C%2Fsvg%3E'); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 0.8rem top 50%;
    background-size: 0.65em auto;
}

.donation-form select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

/* Vision, Strategy, Execution Grid Layout */
.vision-strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center; /* Vertically center items in the grid */
}

.vision-strategy-text p {
    font-size: 1.15rem;
    line-height: 1.6;
}

.vision-strategy-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.truths-font {
    font-family: 'Pacifico', cursive;
}

/* FAQ Section Styles */
.faq-section {
  padding: 0;
  background: var(--bg-gradient);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

.faq-category {
  margin-bottom: 3em;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 4px 24px rgba(79,140,255,0.10);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(79,140,255,0.15);
}

.faq-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.5em 0;
}

.faq-category-header h3 {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.faq-category-header h3 i {
  color: #ffd700;
}

.faq-category-header i.fa-chevron-down {
  color: #ffd700;
  transition: transform 0.3s ease;
}

.faq-category.active .faq-category-header i.fa-chevron-down {
  transform: rotate(180deg);
}

.faq-category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.3s ease-out,
              margin 0.3s ease-out;
  opacity: 0;
  margin-top: 0;
}

.faq-category.active .faq-category-content {
  max-height: 2000px;
  opacity: 1;
  margin-top: 1.5em;
}

.faq-item {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.faq-category.active .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.faq-category.active .faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-category.active .faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-category.active .faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-category.active .faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-category.active .faq-item:nth-child(5) { transition-delay: 0.5s; }

.faq-question {
  cursor: pointer;
  padding: 0.5em 0;
}

.faq-question h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease-out,
              opacity 0.3s ease-out;
  padding: 0;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1em 0 0 0;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 0 1em;
  }
  
  .faq-category {
    padding: 1.5em;
  }
  
  .faq-category-header h3 {
    font-size: 1.1rem;
  }
  
  .faq-question h4 {
    font-size: 0.9rem;
  }
  
  .faq-answer p {
    font-size: 0.85rem;
  }
}
