      @font-face {
      font-family: 'ChildHood';
      src: url('../fonts/Mansalva-Regular.ttf') format('truetype');
      font-weight: bold;
      font-style: normal;
      font-display: swap;
    }

    /* Simple navigation styling */
    .navbar,
    .navbar a,
    .navbar .logo,
    .nav-links a {
      font-family: 'ChildHood';
      font-size: 1.0rem;
    }

    @font-face {
      font-family: 'PizzaFont';
      src: url('../fonts/pizza-is-my-favorite.regular.ttf') format('truetype');
      font-display: swap;
    }
    
    .navbar .logo {
      font-size: 1.5rem;
      text-align: center;
    }

    :root {
      --primary: #FF69B4; /* Hot pink */
      --primary-dark: #DB3EB1; /* Darker pink */
      --secondary: #4CAF50; /* Green */
      --accent: #4CAF50; /* Green (same as secondary for consistency) */
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #ffffff !important;
      color: var(--dark);
      line-height: 1.7;
      scroll-behavior: smooth;
    }
    
    /* Navigation */
    .navbar {
      position: sticky;
      top: 0;
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 100;
      padding: 1rem 2rem;
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .logo {
      font-family: 'Fredoka One', cursive;
      color: var(--primary);
      font-size: 1.2rem;
      text-decoration: none;
    }
    
    .nav-links {
      display: flex;
      gap: 0.9rem;
    }
    
    .nav-links a {
      color: #06722e;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }
    
    .nav-links a:hover {
      color: var(--primary);
    }
    
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
    }
    
    /* Header */
.header {
  background: 
    linear-gradient(135deg, var(--primary), var(--primary-dark)),
    url('images/money-pattern.jpg') center/cover no-repeat;
  background-blend-mode: overlay;
  color: white;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.header-text {
  flex: 1;
  text-align: left;
}

.header-image {
  flex: 1;
  text-align: center;
}

.hero-book-cover {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  /* transform: perspective(1000px) rotateY(-10deg); */
  transition: all 0.3s ease;
}

.hero-book-cover:hover {
  transform: perspective(1000px) rotateY(-5deg) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.header-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}




    
    .header::after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: -50px;
      width: 150px;
      height: 150px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }
    
    .header::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }
    
    h1 {
      font-family: 'Fredoka One', cursive;
      font-size: 4rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }
    
    .subtitle {
      font-family: 'Poppins', sans-serif;
      font-size: 1.0rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      opacity: 0.9;
    }
    
    /* Sections */
    .section {
      padding: 3rem 5rem;
      max-width: 100%;
      margin: 0 0;
    }
    
    .section-title {
      font-family: 'ChildHood';
      src: url('../fonts/child-hood.regular.otf') format('truetype'); 
      color: var(--primary);
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
      font-size: 2rem;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50px;
      height: 4px;
      background: #ff69b4 !important;
      border-radius: 2px;
    }
    
    .gradient-bg {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    }
    
    .gradient-bg .section-title {
      color: white;
    }
    
    .gradient-bg .section-title::after {
      background: var(--secondary);
    }
    
    .light-bg {
      background-color: var(--light);
    }
    
    /* Content Cards */
    .card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      padding: 2rem 2.5rem;
      margin-bottom: 2rem;
      text-align: justify;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .card-title {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--primary);
      font-family: 'ChildHood';
      src: url('../fonts/child-hood.regular.otf') format('truetype');
    }
    
    /* Two Column Layout */
    .two-column {
      display: flex;
      gap: 3rem;
      align-items: center;
    }
    
    .two-column > div {
      flex: 1;
    }
    
    /* Buttons */
    .btn {
      display: inline-block;
      padding: 12px 24px;
      background: #06722e;
      color: white;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      text-align: center;
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
      color: white;
      background: #3e8e41; /* Darker green on hover */
    }
    
    .btn-outline {
      background: transparent;
      border: 2px solid #ffffff;
      color: #ffffff;
    }
    
    .btn-outline:hover {
      background: var(--secondary); /* Green background */
      color: white;
      border: 2px solid #4caf50; /* Green border */
    }
    
    .btn-secondary {
      background: var(--secondary);
    }
    
    .btn-secondary:hover {
      background: #3e8e41;
    }
    
    .btn-large {
      padding: 15px 30px;
      font-size: 1.1rem;
      font-family: 'BrightChalk';
    }
    
    /* Book Cover */
    .book-cover {
      width: 100%;
      max-width: 450px;
      border-radius: 10px;
      /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
      transition: transform 0.3s ease;
    }
    
    .book-cover:hover {
      transform: scale(1.03);
    }

    .book-cover-2 {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0;
      transition: transform 0.3s ease;
    }
    
    /* Stats */
    .stats {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin: 3rem 0;
    }
    
    .stat-item {
      text-align: center;
      padding: 1.5rem;
      min-width: 200px;
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 0.5rem;
    }
    
    .gradient-bg .stat-number {
      color: white;
    }
    
    .stat-label {
      font-size: 1rem;
      font-weight: 500;
    }
    
    .gradient-bg .stat-label {
      color: white;
      opacity: 0.9;
    }
    
    /* Testimonial */
    .testimonial {
      background: #044f20; /* Light green */
      border-radius: 10px;
      padding: 2rem;
      margin: 2rem 0;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    #author .card {
      background: var(--secondary); /* Green */
      color: #fff;
    }
    
    .testimonial::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 5rem;
      color: rgb(255 255 255);
      font-family: serif;
      line-height: 1;
    }
    
    .testimonial-text {
      font-size: 1.1rem;
      font-style: italic;
      margin-bottom: 0rem;
      color: #fff;
      position: relative;
      z-index: 1;
    }
    
    .testimonial-author {
      font-weight: 600;
      color: #fff;
    }
    
    /* Accordion */
    .accordion {
      margin: 2rem 0;
    }
    
    .accordion-item {
      margin-bottom: 1rem;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .accordion-header {
      background: var(--primary); /* Pink */
      padding: 1.5rem;
      color: #ffffff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-family: 'ChildHood';
      src: url('../fonts/child-hood.regular.otf') format('truetype');
    }

    .accordion-item.active .accordion-header {
      background-color: var(--secondary) !important; /* Green when active */
      color: white !important;
    }
    
    .accordion-header:hover {
      background: var(--primary-dark); /* Darker pink */
      color: #fff;
    }
    
    .accordion-content {
      background: white;
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .accordion-content-inner {
      padding: 1.5rem 0;
    }
    
    .accordion-item.active .accordion-content {
      max-height: 500px;
    }
    
    /* Footer */
    .footer {
      background: #043918;
      color: white;
      padding: 4rem 2rem 2rem;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-column h3 {
      font-family: 'ChildHood';
      src: url('../fonts/child-hood.regular.otf') format('truetype');
      margin-bottom: 1.5rem;
      color: #fff;
      font-size: 1.5rem;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    
    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: white;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .social-links a {
      color: white;
      background: rgba(255,255,255,0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    
    .social-links a:hover {
      background: var(--secondary);
    }
    
    .copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      opacity: 0.9; /* Slightly muted when not hovered */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 998; /* Lower than cart button */
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .whatsapp-btn:hover {
      opacity: 1;
      background-color: #128C7E;
      transform: scale(1.1);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .two-column {
        flex-direction: column;
      }
      
      .header {
        padding: 5rem 2rem 7rem;
      }
      
      h1 {
        font-size: 2.5rem;
      }
      .header-content {
        flex-direction: column;
        text-align: center;
      }
      
      .header-text {
        text-align: center;
      }
    
    }
    
    @media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      }
      
      .nav-links.show {
        display: flex;
      }
      
      .nav-links a {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .header {
        padding: 4rem 1.5rem 6rem;
      }
      
      h1 {
        font-size: 2rem;
      }

.header-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-book-cover {
    max-width: 300px;
  }
      
      .section {
        padding: 3rem 1.5rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .stats {
        flex-direction: column;
      }
      
      .stat-item {
        min-width: 100%;
      }

      .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
      }

      .floating-cart {
        bottom: 90px; /* Closer on mobile */
        right: 20px;
      }
    }

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .btn-large {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-family: 'BrightChalk';
  }

  .two-column {
    gap: 2rem;
  }

  .card-title {
    font-size: 1.2rem;
    font-family: 'ChildHood';
    src: url('../fonts/child-hood.regular.otf') format('truetype');
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  #story,
  #buy,
  #donate,
  #author,
  #partner {
    padding: 2rem 1rem !important;
  }

  .book-cover,
  .book-cover-2 {
    max-width: 100%;
    height: auto;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .accordion-header {
    padding: 1rem;
  }

  .accordion-content-inner {
    padding: 1rem 0;
  }

  .copyright {
    font-size: 0.75rem;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
    gap: 1rem;
  }

  .mobile-menu-btn {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  [style*="width: 1200px;"] {
    width: 100% !important;
    padding: 0 1rem !important;
    box-sizing: border-box;
  }
}

/* Education Icons */
.education-list {
  list-style: none;
  padding-left: 0;
}

.education-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.education-icon {
  margin-right: 12px;
  margin-top: 4px;
  color: var(--secondary);
  min-width: 20px;
  text-align: center;
}

/* Specific icons for each education item */
.icon-degree::before {
  content: "\f19d"; /* graduation cap */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-honors::before {
  content: "\f5d1"; /* scroll */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-certificate::before {
  content: "\f0a3"; /* certificate */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Floating Cart Button */
.floating-cart {
  position: fixed;
  bottom: 100px; /* Positioned above WhatsApp button */
  right: 30px;
  z-index: 999;
}

.cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white; /* Makes it pop more */
  background-color: #E63F2A;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  transition: all 0.3s ease;
}

.cart-button:hover {
  background-color: #c53725;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.cart-button i {
  font-size: 1.5rem;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FFD700; /* Gold */
  color: #333;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Animation for cart updates */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.cart-update {
  animation: pulse 0.5s ease;
}