/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

.gradient-text {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Section Badges */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.objectives-section .section-header p,
.trustees-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-top {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 2rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.logo-text h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-text span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #667eea;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80")
    center/cover;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  color: white;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  opacity: 0.8;
}

.scroll-arrow {
  margin-top: 1rem;
  animation: bounce 2s infinite;
}

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

/* Impact Section */
.impact-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.impact-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.impact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
}

.impact-number {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 1rem;
}

.impact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.impact-card p {
  color: #666;
}

.testimonial {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info strong {
  display: block;
  color: #333;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
}

.about-header-fullwidth {
  grid-column: 1 / -1; /* Span across all grid columns */
  text-align: center;
  margin-bottom: 2rem; /* Add space between header and content below */
}

.about-text h3 {
  text-align: center;
  margin-top: 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-stats {
  margin: 2rem 0;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  font-weight: 500;
}

.feature-item i {
  color: #667eea;
  font-size: 1.2rem;
}

.office-info {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.office-info h4 {
  color: #667eea;
  margin-bottom: 1rem;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-image .image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
}

.overlay-content {
  text-align: center;
}

.overlay-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Objectives Section */
.objectives-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.objective-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.objective-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
}

.objective-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.objective-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.card-stat {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.objectives-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
}

.gallery-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  border-radius: 20px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.gallery-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.slide {
  scroll-snap-align: start;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
}

/* Trustees Section */
.trustees-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.trustees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.trustee-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trustee-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.trustee-avatar {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.trustee-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: white;
}

.trustee-role {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: white;
}

.trustee-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.trustee-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.trustee-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.trustee-social a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.leadership-values {
  text-align: center;
  margin-top: 4rem;
}

.leadership-values h3 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.value-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  text-align: center;
}

.cta-content .section-badge {
  background: rgba(255, 255, 255, 0.2);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
}

.cta-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  opacity: 0.8;
}

.contact-item div span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-item div strong {
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.contact-content {
  margin-top: 2rem;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-header h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-details-wrapper > p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.detail-content p {
  margin-bottom: 1rem;
  color: #666;
}

.detail-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.detail-link:hover {
  color: #764ba2;
}

.social-follow h4 {
  display: none;
}

.social-follow .social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.facebook {
  background: #3b5998;
}
.social-link.twitter {
  background: #1da1f2;
}
.social-link.linkedin {
  background: #0077b5;
}
.social-link.instagram {
  background: #e4405f;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 1.1rem;
}

.form-group textarea + i {
  top: 1.5rem;
  transform: none;
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-section p {
  color: #a0aec0;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #a0aec0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #667eea;
}

.footer-logo .logo {
  margin-bottom: 1.5rem;
}

.footer-logo .logo-text h3 {
  color: white;
}

.footer-logo .logo-text span {
  color: #a0aec0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #2d3748;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.footer-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2d3748;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2d3748;
  color: #a0aec0;
}

.footer-legal-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

.footer-legal-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-legal-links span {
  color: #6b7280;
  margin: 0 0.5rem;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Photo Slider Styles */
.photo-slider {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 80px;
  margin-bottom: 2rem;
  z-index: 10;
}
.slider-wrapper {
  position: relative;
  width: 100vw;
  max-width: 1920px;
  margin: 0 auto;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-image {
  display: none;
  width: 100vw;
  max-width: 1920px;
  height: 480px;
  object-fit: cover;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: opacity 0.5s;
}
.slider-image.active {
  display: block;
  opacity: 1;
}
.slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem 3rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.slide-content.active {
  opacity: 1;
}
.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(102, 126, 234, 0.8);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
}
.slider-btn:hover {
  background: rgba(102, 126, 234, 1);
  transform: translateY(-50%) scale(1.1);
}
.slider-btn.prev {
  left: 2vw;
}
.slider-btn.next {
  right: 2vw;
}
@media (max-width: 900px) {
  .slider-wrapper,
  .slider-image {
    height: 300px;
  }
  .slide-content h2 {
    font-size: 2rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .slide-content {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 600px) {
  .slider-wrapper,
  .slider-image {
    height: 220px;
  }
  .slider-btn {
    font-size: 1.2rem;
    padding: 0.3rem 0.7rem;
  }
  .slide-content h2 {
    font-size: 1.5rem;
  }
  .slide-content p {
    font-size: 0.9rem;
  }
  .slide-content {
    padding: 1rem 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-header {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-form {
    padding: 2.5rem 2rem;
  }

  .contact-detail {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
  }

  .detail-icon {
    margin: 0;
  }
}

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

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .header-top {
    display: none;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-header h3 {
    font-size: 1.8rem;
  }

  .contact-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-details-wrapper > p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .contact-detail {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .detail-icon {
    margin: 0 auto;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .detail-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .social-follow {
    margin-top: 1rem;
  }

  .social-follow h4 {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .social-follow .social-links {
    justify-content: center;
    gap: 0.75rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .contact-form h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    font-size: 0.95rem;
  }

  .form-group i {
    left: 0.875rem;
    font-size: 1rem;
  }

  .cta-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .nav-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
  }

  .footer-section {
    text-align: center;
  }

  .cta-contact {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  /* Page Hero Mobile Styles */
  .page-hero {
    height: 50vh;
    min-height: 400px;
  }

  .page-hero .hero-title {
    font-size: 2.5rem;
  }

  .about-hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-hero .hero-contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  .donate-hero .hero-impact {
    flex-direction: column;
    gap: 1.5rem;
  }

  .donate-hero .impact-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  /* About Page Mobile Styles */
  .about-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Page Mobile Styles */
  .emergency-numbers {
    flex-direction: column;
    gap: 1rem;
  }

  /* Donation Page Mobile Styles */
  .donation-form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .amount-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .impact-stories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tax-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-contact {
    flex-direction: column;
    gap: 2rem;
  }

  .objectives-grid {
    grid-template-columns: 1fr;
  }

  .trustees-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .contact-form h3 {
    font-size: 1.6rem;
  }

  .contact-header h3 {
    font-size: 1.6rem;
  }

  .contact-detail {
    padding: 1.25rem 0.75rem;
    margin-bottom: 1.5rem;
  }

  .detail-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .detail-content h4 {
    font-size: 1rem;
  }

  .detail-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 0.75rem 0.75rem 2.25rem;
    font-size: 0.9rem;
  }

  .nav-actions {
    margin-top: 0.75rem;
  }

  .footer-section {
    padding: 1.5rem 1rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .form-group i {
    left: 0.75rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-form {
    padding: 2rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* =================================================================
   PAGE HERO SECTIONS
   ================================================================== */

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.page-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.8),
    rgba(99, 102, 241, 0.6)
  );
  z-index: -1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* About Hero Specific */
.about-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.about-hero .stat-item {
  text-align: center;
}

.about-hero .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.about-hero .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Contact Hero Specific */
.contact-hero .hero-contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-hero .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.contact-hero .contact-item i {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-hero .contact-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Donate Hero Specific */
.donate-hero .hero-impact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.donate-hero .impact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.donate-hero .impact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donate-hero .impact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.donate-hero .impact-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}

/* =================================================================
   ABOUT PAGE STYLES
   ================================================================== */

.about-content-section {
  padding: 5rem 0;
}

.about-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-text .lead {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 500;
}

.story-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mission-box,
.vision-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mission-box .icon-box,
.vision-box .icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.mission-box h3,
.vision-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-sidebar {
  position: sticky;
  top: 2rem;
}

.founder-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
}

.founder-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-color);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.founder-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.quick-facts {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-facts h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.quick-facts ul {
  list-style: none;
  padding: 0;
}

.quick-facts li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.quick-facts li:last-child {
  border-bottom: none;
}

.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-color);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.member-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* =================================================================
   CONTACT PAGE STYLES
   ================================================================== */

.map-section {
  padding: 3rem 0;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.emergency-contact {
  background: var(--primary-color);
  color: white;
}

.emergency-content {
  max-width: 600px;
  margin: 0 auto;
}

.emergency-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.emergency-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.emergency-numbers {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.emergency-number,
.emergency-email {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.emergency-number:hover,
.emergency-email:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* =================================================================
   DONATION PAGE STYLES
   ================================================================== */

.donation-section {
  padding: 5rem 0;
}

.donation-form-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.donation-amounts {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.donation-amounts h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.amount-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.amount-btn {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.custom-amount-input {
  margin-top: 1rem;
}

.custom-amount-input input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
}

.donation-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.donation-form .form-group {
  margin-bottom: 1.5rem;
}

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

.donation-form .form-group input,
.donation-form .form-group select,
.donation-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.donation-form .form-group input:focus,
.donation-form .form-group select:focus,
.donation-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.donation-summary {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.donation-summary h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.btn-block {
  width: 100%;
}

.impact-section {
  padding: 5rem 0;
}

.impact-stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.impact-story {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image {
  height: 250px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  padding: 2rem;
}

.story-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.story-stats .stat {
  text-align: center;
}

.story-stats .stat strong {
  font-size: 1.5rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
}

.story-stats .stat span {
  font-size: 0.9rem;
  color: var(--text-color);
}

.tax-benefits {
  padding: 5rem 0;
}

.tax-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.tax-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.tax-details {
  margin-top: 2rem;
}

.tax-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tax-item i {
  font-size: 2rem;
  color: var(--primary-color);
  width: 60px;
  flex-shrink: 0;
}

.tax-calculation {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 2rem;
}

.tax-calculation h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.calc-input {
  margin-bottom: 1.5rem;
}

.calc-input label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.calc-input input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
}

.calc-result {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.result-item:last-child span:last-child {
  color: var(--success-color);
  font-weight: 700;
}

.faq-section {
  padding: 5rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--primary-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
}

/* =================================================================
   UTILITY CLASSES
   ================================================================== */

.section-padding {
  padding: 5rem 0;
}

.bg-light {
  background-color: #f8fafc;
}

.bg-primary {
  background-color: var(--primary-color);
  color: white;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  opacity: 0.8;
}

/* =================================================================
   LEGAL CONTENT PAGES
   ================================================================== */

.legal-content {
  padding: 5rem 0;
  background: #f8fafc;
}

.legal-content .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.last-updated {
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: #e0f2fe;
  border-left: 4px solid var(--primary-color);
  border-radius: 5px;
}

.last-updated p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--primary-color);
}

.policy-intro {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f1f5f9;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.policy-intro p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.policy-section h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0f2fe;
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 0;
  list-style: none;
}

.policy-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.policy-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-details {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.back-to-home {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.back-to-home .btn {
  padding: 12px 30px;
  font-size: 1rem;
}

/* Mobile Responsive for Legal Content */
@media (max-width: 768px) {
  .legal-content .content-wrapper {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }

  .policy-section h3 {
    font-size: 1.3rem;
  }

  .policy-intro,
  .contact-details {
    padding: 1.5rem;
  }

  .last-updated {
    padding: 1rem;
  }
}
