/* ===== Color Scheme from SUKINGS Logo ===== */
:root {
    --sky-blue: #87CEEB;  /* Light blue from logo */
    --navy-blue: #010124; /* Dark blue from logo */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
  }
  
  /* ===== Header Top Row ===== */
  .header-top {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
  }
  
  .logo {
    height: 60px;
    width: auto;
  }
  
  .contact-info {
    font-size: 0.9rem;
    color: var(--navy-blue);
  }
  
  .contact-item {
    margin-bottom: 0.3rem;
  }
  
  .social-icons a {
    color: var(--navy-blue);
    margin-left: 10px;
    font-size: 1.1rem;
  }
  
  .social-icons a:hover {
    color: var(--sky-blue);
  }
  
  /* ===== Navigation Menu ===== */
  .navbar {
    background-color: var(--navy-blue) !important; /* Navy blue background */
  }
  
  .navbar .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem !important;
  }
  
  .navbar .nav-link:hover {
    color: var(--sky-blue) !important;
  }
  
  /* ===== Mobile Responsiveness ===== */
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2.5rem;
    }
    .hero-section h3 {
      font-size: 1.3rem;
    }
  }

  /* ===== New Footer (Dunamis-Inspired) ===== */
footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-logo {
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .footer-links h5 {
    color: var(--sky-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
  }
  
  .footer-links a:hover {
    opacity: 1;
    color: var(--sky-blue);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-links {
      margin-bottom: 2rem;
    }
  }

  /* Hero Section Fixes */
.hero-section {
    position: relative; /* Required for absolute positioning inside */
    width: 100%;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    display: block; /* Remove extra space below image */
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 51, 0.5); /* 50% navy-blue overlay */
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    z-index: 1; /* Ensures overlay is above the image */
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    z-index: 2; /* Ensures text is above overlay */
  }

  /* Hero Overlay (unchanged) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 51, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  
  /* New Container with Border */
  .hero-container {
    border: 2px solid #87CEEB; /* Sky blue border */
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    background: rgba(0, 0, 51, 0.3); /* Optional: Slightly darker bg for contrast */
  }
  
  /* Content Styling */
  .hero-content {
    padding: 1rem;
  }

  /* ===== Section Styling ===== */
.intro-banner {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('/assets/images/banner-bg.jpg') center/cover;
  }
  
  .featured-services .card {
    transition: transform 0.3s;
  }
  .featured-services .card:hover {
    transform: translateY(-5px);
  }
  
  .about-highlight img {
    border: 3px solid var(--sky-blue);
  }
  
  .testimonial-card {
    border-left: 4px solid var(--sky-blue);
  }
  
  .cta-banner {
    background-color: var(--navy-blue);
  }
  .btn-gold {
    background: var(--sky-blue);
    color: var(--navy-blue);
    font-weight: 600;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .about-highlight img {
      margin-bottom: 2rem;
    }
  }

  /* ===== Books Section ===== */
.books .card {
    transition: all 0.3s;
  }
  .books .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
  }
  
  /* ===== Partners Section ===== */
  .partners img {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
  }
  .partners img:hover {
    filter: grayscale(0);
    opacity: 1;
  }
  
  /* ===== Blog Cards ===== */
  .latest-blogs .card {
    border-bottom: 3px solid var(--sky-blue);
  }
  
  /* ===== Newsletter ===== */
  .newsletter-form .form-control {
    height: 50px;
    border: none;
  }
  .newsletter-form .btn-gold {
    height: 50px;
    min-width: 120px;
  }

  /* ===== Custom Background Colors ===== */
.bg-sky {
    background-color: #87CEEB; /* Sky blue */
  }
  
  .bg-light {
    background-color: #f8f9fa; /* Bootstrap's light gray */
  }
  
  .bg-white {
    background-color: #ffffff; /* Pure white */
  }
  
  /* ===== Section Padding & Visual Balance ===== */
  section {
    padding: 4rem 0;
  }
  
  /* Testimonial card in sky blue section */
  .bg-sky .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid white;
  }
  
  /* Blog cards in sky blue section */
  .bg-sky .card {
    background: rgba(255, 255, 255, 0.1);
    border: none;
  }
  .bg-sky .card:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Partner logos on light gray */
  .bg-light .partners img {
    opacity: 0.9; /* More visible on light gray */
  }

  /* Adjust service card width for 4 items */
@media (min-width: 768px) {
  .featured-services .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

  @media (min-width: 768px) {
    .latest-blogs .col-md-3 {
      flex: 0 0 25%;
      max-width: 25%;
    }
  }


/* ===== About Page Specific Styles ===== */
.about-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/about-hero-bg.jpg') center/cover;
  padding: 6rem 0;
}

.founder-bio img {
  border: 3px solid var(--sky-blue);
  max-width: 100%;
}

blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy-blue);
  position: relative;
  padding: 0 2rem;
}

blockquote:before {
  content: '"';
  font-size: 4rem;
  color: var(--sky-blue);
  position: absolute;
  left: -10px;
  top: -20px;
  opacity: 0.3;
}

.credentials .card {
  transition: transform 0.3s;
}
.credentials .card:hover {
  transform: translateY(-5px);
}

/* ===== Contact Page Styles ===== */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/contact-hero-bg.jpg') center/cover;
  padding: 6rem 0;
}

.text-sky {
  color: #87CEEB !important;
}

.btn-outline-sky {
  border: 1px solid #87CEEB;
  color: #87CEEB;
}
.btn-outline-sky:hover {
  background: #87CEEB;
  color: #000033;
}

.contact-info h5 {
  color: #000033;
  font-size: 1.1rem;
}

/* Form Styling */
#contactForm .form-control {
  border: 1px solid #ddd;
  padding: 10px;
}
#contactForm .form-control:focus {
  border-color: #87CEEB;
  box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
}

/* Map Section */
.map-section iframe {
  filter: grayscale(20%);
}

/* ===== Services Page Styles ===== */
.services-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/services-hero-bg.jpg') center/cover;
  padding: 6rem 0;
}

.service-card {
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}
.service-card:last-child {
  border-bottom: none;
}

/* Pricing Cards */
.pricing .card {
  transition: transform 0.3s;
}
.pricing .card:hover {
  transform: translateY(-10px);
}
.pricing .card-header {
  border-radius: 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-card {
    padding: 2rem 0;
  }
}

/* ===== Books Page Styles ===== */
.books-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/books-hero-bg.jpg') center/cover;
  padding: 6rem 0;
}

/* Book Cards */
.featured-books .card {
  transition: transform 0.3s;
}
.featured-books .card:hover {
  transform: translateY(-5px);
}
.featured-books .badge {
  z-index: 1;
}
.featured-books .card-img-top {
  height: 300px;
  object-fit: cover;
}

/* Category Cards */
.category-card {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 51, 0.1);
}
.category-card:hover {
  border-color: #87CEEB;
  transform: translateY(-5px);
}

/* Testimonials */
.book-testimonials blockquote {
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}
.book-testimonials blockquote:before {
  content: '"';
  font-size: 3rem;
  color: #87CEEB;
  position: absolute;
  left: -10px;
  top: -15px;
  opacity: 0.3;
}

/* ===== Gallery Page Styles ===== */
.gallery-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/gallery-hero-bg.jpg') center/cover;
  padding: 6rem 0;
}

.gallery-filters {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
}
.gallery-filters .btn-outline-dark.active {
  background: var(--navy-blue);
  color: white;
  border-color: var(--navy-blue);
}

.gallery-grid .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-grid img {
  transition: transform 0.5s;
}
.gallery-grid .grid-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 51, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.gallery-grid .grid-item:hover .gallery-overlay {
  opacity: 1;
}
.overlay-content {
  text-align: center;
}

/* Lightbox adjustments */
.lightbox .lb-image {
  border: 3px solid white;
}

/* ===== Certification Page Styles ===== */
.certification-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/certification-hero-bg.jpg') center/cover;
  padding: 6rem 0;
}

/* Tier Cards */
.featured-tier {
  transform: translateY(-10px);
  border: 2px solid var(--sky-blue) !important;
}
.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--sky-blue);
  color: var(--navy-blue);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Benefits */
.benefit-card {
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 51, 0.1);
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--sky-blue);
}

/* Enrollment Form */
#certificationForm .form-control, 
#certificationForm .form-select {
  border: 1px solid #ddd;
  padding: 10px;
}
#certificationForm .form-control:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
}

/* FAQ */
.accordion-button:not(.collapsed) {
  background-color: rgba(135, 206, 235, 0.1);
  color: var(--navy-blue);
}

/* ===== Conference Page Styles ===== */
.conference-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.8), rgba(0, 0, 51, 0.8)), 
              url('/assets/images/conference-hero-bg.jpg') center/cover;
  padding: 8rem 0;
}

/* Speaker Cards */
.speaker-photo {
  width: 180px;
  height: 180px;
  position: relative;
  border: 3px solid var(--sky-blue);
}
.speaker-photo .social-links {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
}
.speaker-photo .social-links a {
  background: var(--sky-blue);
  color: var(--navy-blue);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
}

/* Schedule */
.session {
  display: flex;
  border-bottom: 1px solid #eee;
}
.session-time {
  flex: 0 0 100px;
  font-weight: 600;
}
.session-detail {
  flex: 1;
}

/* Pricing */
.featured-tier {
  transform: translateY(-10px);
  border: 2px solid var(--sky-blue) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .session {
    flex-direction: column;
  }
  .speaker-photo {
    width: 120px;
    height: 120px;
  }
}

/* ===== Testimonials Page ===== */
.testimonials-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/testimonials-hero-bg.jpg') center/cover;
}

.video-testimonials iframe {
  transition: transform 0.3s;
}
.video-testimonials iframe:hover {
  transform: scale(1.02);
}

.client-info img {
  border: 2px solid var(--sky-blue);
}

/* ===== Blog Page ===== */
.blog-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/blog-hero-bg.jpg') center/cover;
}

.featured-post img {
  border: 3px solid var(--sky-blue);
}

.blog-grid .card {
  transition: transform 0.3s;
}
.blog-grid .card:hover {
  transform: translateY(-5px);
}

.pagination .page-item.active .page-link {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: var(--navy-blue);
}

/* ===== FAQ Page Styles ===== */
.faq-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.7), rgba(0, 0, 51, 0.7)), 
              url('/assets/images/faq-hero-bg.jpg') center/cover;
}

.faq-nav .nav-link {
  color: var(--navy-blue);
  padding: 0.5rem 0;
  border-left: 3px solid transparent;
}
.faq-nav .nav-link.active,
.faq-nav .nav-link:hover {
  color: var(--sky-blue);
  border-left: 3px solid var(--sky-blue);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(135, 206, 235, 0.1);
  color: var(--navy-blue);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
}

.faq-section h2 {
  color: var(--navy-blue);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .faq-nav {
    position: static !important;
    margin-bottom: 2rem;
  }
}

/* ===== Corporate Page Styles ===== */
.corporate-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.8), rgba(0, 0, 51, 0.8)), 
              url('/assets/images/corporate-hero-bg.jpg') center/cover;
}

.logo-bar img {
  transition: filter 0.3s;
}
.logo-bar img:hover {
  filter: grayscale(0);
}

.corporate-card {
  transition: transform 0.3s;
  border-top: 3px solid var(--sky-blue) !important;
}
.corporate-card:hover {
  transform: translateY(-10px);
}

.roi-metric {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.corporate-testimonials .testimonial-card {
  border-left: 4px solid var(--navy-blue);
}

/* ===== Train-the-Trainer Page ===== */
.ttt-hero {
  background: linear-gradient(rgba(0, 0, 51, 0.9), rgba(0, 0, 51, 0.9)), 
              url('/assets/images/ttt-hero-bg.jpg') center/cover;
}

.program-poster {
  transition: transform 0.3s;
  border: 3px solid var(--sky-blue);
}
.program-poster:hover {
  transform: scale(1.03);
}

.bg-gold {
  background-color: #D4AF37;
}

.program-stats {
  border-left: 4px solid var(--sky-blue);
}

/* Comparison Table */
.table th {
  font-weight: 600;
}
.table tbody tr:nth-child(odd) {
  background-color: rgba(135, 206, 235, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* ===== Newsletter Form Styles ===== */
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 51, 0.1);
  border-top: 3px solid var(--sky-blue);
}

.newsletter-form .form-control {
  height: 50px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
}

.newsletter-form .form-control:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
}

.newsletter-form button[type="submit"] {
  background: var(--navy-blue);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.newsletter-form button[type="submit"]:hover {
  background: var(--sky-blue);
  transform: translateY(-2px);
}

.newsletter-form .small {
  color: #666;
  font-size: 0.8rem;
}

/* Floating Label Effect (Optional) */
.newsletter-form .input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.newsletter-form .input-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #999;
  transition: all 0.3s;
  pointer-events: none;
}

.newsletter-form .form-control:focus + .input-label,
.newsletter-form .form-control:not(:placeholder-shown) + .input-label {
  top: 0;
  left: 0.8rem;
  font-size: 0.75rem;
  background: white;
  padding: 0 0.2rem;
  color: var(--sky-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .newsletter-form {
    padding: 1.5rem;
  }
}

/* Mobile Menu Overrides */
.navbar-toggler {
  border: 1px solid white;
  padding: 0.5rem;
  background-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px white;
  background-color: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

.navbar-toggler-text {
  color: white;
  margin-left: 0.5rem;
  font-size: 1rem;
  vertical-align: middle;
}

@media (max-width: 991px) {
  #mainNav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(245, 244, 244, 0.1);
    z-index: 1000;
  }
  
  .navbar-nav {
    padding-top: 1rem;
  }
  
  .nav-item {
    border-bottom: 1px solid #f8f3f3;
    padding: 0.5rem 0;
  }

  .nav-link {
    color: #000033 !important; /* Override white color for visibility */
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .nav-link:hover {
    color: #005566 !important;
  }
}

@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    flex-direction: row;
  }

  .nav-item {
    border-bottom: none;
    padding: 0 1rem;
  }

  .nav-link {
    color: var(--white) !important; /* Restore original white color for desktop */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.8rem 1.2rem !important;
  }

  .nav-link:hover {
    color: var(--sky-blue) !important;
  }
}

/* Curriculum Page Specific Styles */
:root {
  --sky-blue: #87CEEB;
  --navy-blue: #010124;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --text-color: #444444;
  --success-green: #4CAF50;
}

/* Curriculum Section */
.curriculum-intro {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.curriculum-intro h1 {
  color: var(--navy-blue);
  margin-bottom: 20px;
  text-align: center;
}

.curriculum-intro p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.curriculum-intro img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Curriculum Grid */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.curriculum-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.curriculum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.curriculum-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.curriculum-details {
  padding: 20px;
}

.curriculum-details h3 {
  color: var(--navy-blue);
  margin-bottom: 10px;
}

.curriculum-details p {
  color: var(--text-color);
  margin-bottom: 15px;
}

.purchase-btn {
  display: inline-block;
  background-color: var(--success-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 15px;
}

.purchase-btn:hover {
  background-color: #3e8e41;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .curriculum-grid {
      grid-template-columns: 1fr;
      padding: 0 15px;
  }
  
  .curriculum-intro {
      padding: 20px;
      margin: 20px 15px;
  }
}
