/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Shadows+Into+Light&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --color-primary: #4a7c59;
    --color-primary-dark: #3a5f47;
    --color-primary-light: #6b8e76;
    --color-secondary: #f7fafc;
    --color-accent: #e53e3e;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --color-light-bg: #f8fafc;
    --color-white: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-shadow-hover: rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Section Spacing */
.section {
    padding: 4rem 0;
}

/* Account for fixed navigation */
body {
    padding-top: 128px; /* 48px topbar + 80px navbar */
}

/* Hero section should start at the top */
#home.hero {
    margin-top: -128px;
    padding-top: 128px;
}

/* Ensure smooth scrolling works with fixed navigation */
html {
    scroll-padding-top: 128px;
}

/* Ensure proper spacing between topbar and navbar */
.navbar {
    top: 40px !important; /* Always positioned below topbar */
}

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

/* Grid sections that span full width */


/* Grid Styles - Same as programs page */
.impact-grid,
.benefits-grid,
.principles-grid,
.highlights-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.impact-grid {
    grid-template-columns: repeat(4, 1fr);
}

.benefits-grid {
    grid-template-columns: repeat(3, 1fr);
}

.principles-grid {
    grid-template-columns: repeat(5, 1fr);
}

/* Program highlights section - 4 columns */
#program-highlights .principles-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Mobile responsive styles for program highlights */
@media (max-width: 768px) {
    #program-highlights .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    #program-highlights .highlight-card {
        padding: 24px 16px;
    }
    
    #program-highlights .highlight-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    #program-highlights .highlight-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    #program-highlights .highlight-card .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    #program-highlights .principles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    #program-highlights .highlight-card {
        padding: 20px 16px;
    }
    
    #program-highlights .highlight-card h3 {
        font-size: 1rem;
    }
    
    #program-highlights .highlight-card p {
        font-size: 0.85rem;
    }
    
    #program-highlights .highlight-card .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
}

.highlights-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    justify-items: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}



/* Page Header Styles */
.page-header {
    background: #1e3a2e;
    color: white;
    padding: 80px 0 60px;
    text-align: left !important;
    position: relative;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Page Header Background Images and Overlays */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.3) 25%, 
        rgba(0, 0, 0, 0.35) 50%, 
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* About Us page - banner-image5 */
.about-page .page-header {
    background-image: url('images/banner-image7.png');
}

/* Programs page - banner-image6 */
.programs-page .page-header {
    background-image: url('images/banner-image11.png');
}

/* Testimonials page - banner-image8 */
.testimonials-page .page-header {
    background-image: url('images/banner-image12.jpg');
}

/* FAQ page - banner-image7 */
.faq-page .page-header {
    background-image: url('images/banner-image5.jpg');
}

.page-header .container {
    margin: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    position: relative;
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease-out;
    padding: 0 !important;
    max-width: 600px;
    margin: 0 !important;
    align-self: flex-start !important;
    text-align: left !important;
    width: 100% !important;
}

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

.page-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 2rem;
    text-align: left !important;
    letter-spacing: -0.03em;
    position: relative;
    line-height: 1.1;
    width: 100% !important;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a7c59, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.4);
}

.page-subtitle {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0;
    text-align: left !important;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    position: relative;
    width: 100% !important;
}



/* Responsive enhancements */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 80px;
    }
    
    .page-header-content {
        padding: 0;
        max-width: 90%;
    }
    
    .page-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
        max-width: 90%;
    }
    
    /* Prevent horizontal scroll on mobile */
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Section spacing for mobile */
    .section {
        padding: 3rem 0;
    }
    
    /* Better mobile spacing for vision and mission sections */
    #vision-values,
    #mission-impact {
        padding: 2.5rem 0;
    }
    
    #vision-values .container,
    #mission-impact .container {
        padding: 0 20px;
    }
}

/* Content Layout Styles */
.vision-content,
.mission-content,
.intro-content,
.camp-overview-content,
.cta-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin: 3rem 0;
    min-height: 400px;
    margin-bottom: 4rem;
    width: 100%;
}

.vision-text,
.mission-text,
.intro-text,
.camp-overview-text,
.cta-text {
    flex: 1;
    max-width: none;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.vision-image,
.mission-image,
.intro-image,
.camp-overview-image,
.cta-image {
    flex: 0 0 45%;
    position: static;
    height: auto;
    z-index: 1;
}

.vision-image img,
.mission-image img,
.intro-image img,
.camp-overview-image img,
.cta-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-height: 500px;
    object-position: center;
}

/* Values Grid Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--color-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--color-shadow-hover);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.value-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}



.impact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.impact-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.impact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.impact-item p {
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

.impact-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.impact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.impact-item p {
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

/* Mission Grid Styles */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mission-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.mission-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.mission-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.mission-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Approach Grid Styles */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.approach-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.approach-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.approach-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Journey Timeline Styles */
.journey-timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.timeline-year {
    background: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Philosophy Grid Styles */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.philosophy-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Personal Story Styles */
.personal-story {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.personal-story p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.personal-story p:last-child {
    margin-bottom: 0;
}



.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

/* Research Grid Styles */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.research-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.research-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.research-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.research-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Program Highlights Styles */
.program-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.highlight-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Themes Grid Styles */
.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.theme-week {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-week:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.week-header {
    background: #4a7c59;
    color: white;
    padding: 1.5rem;
}

.week-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.week-dates {
    font-size: 0.9rem;
    opacity: 0.9;
}

.theme-activities {
    padding: 1.5rem;
}

.theme-activities h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.theme-activities ul {
    list-style: none;
    padding: 0;
}

.theme-activities li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.theme-activities li:last-child {
    border-bottom: none;
}

/* Schedule Timeline Styles */
.schedule-timeline {
    margin: 3rem 0;
}

.schedule-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.schedule-time {
    background: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.schedule-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.schedule-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Packing Lists Styles */
.packing-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.packing-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.packing-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.packing-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.packing-list {
    list-style: none;
    padding: 0;
}

.packing-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.packing-list li:last-child {
    border-bottom: none;
}

/* Testimonials Grid Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-card .testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-impact {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
    line-height: 1.4;
}

.testimonial-card quote {
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-card .testimonial-author {
    text-align: right;
}

.testimonial-card .testimonial-author strong {
    display: block;
    color: #2d3748;
    font-weight: 600;
}

.testimonial-card .testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

/* Impact Stories Styles */
.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.impact-story {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.impact-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.impact-story h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.impact-story p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-author {
    color: #718096;
    font-style: italic;
    font-size: 0.9rem;
}

/* FAQ Styles */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.faq-category {
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-category:hover,
.faq-category.active {
    background: #4a7c59;
    color: white;
    border-color: #4a7c59;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.2);
}

.faq-section {
    display: none;
}

.faq-section.active {
    display: block;
}

.faq-list {
    margin: 2rem 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s ease;
}

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

.faq-question[aria-expanded="true"] {
    background: #4a7c59;
    color: white;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #4a7c59;
}

.faq-question[aria-expanded="true"] i {
    color: white;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

/* Contact Options Styles */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.contact-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.contact-option p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation container mobile adjustments */
    .nav-container {
        padding: 0 20px;
        min-height: 80px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }
    
    .section-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .vision-content,
    .mission-content,
    .intro-content,
    .camp-overview-content,
    .cta-content {
        flex-direction: column;
        min-height: auto;
        gap: 2.5rem;
        margin: 2rem 0;
    }
    
    .vision-text,
    .mission-text,
    .intro-text,
    .camp-overview-text,
    .cta-text {
        max-width: 100%;
        margin-bottom: 0;
        order: 1;
    }
    
    .vision-image,
    .mission-image,
    .intro-image,
    .camp-overview-image,
    .cta-image {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        position: static;
        margin-top: 0;
        order: 2;
    }
    
    .vision-image img,
    .mission-image img,
    .intro-image img,
    .camp-overview-image img,
    .cta-image img {
        max-height: 350px;
        object-position: center;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
        margin: 2.5rem 0;
        padding: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
        margin: 2.5rem 0;
        padding: 0 1rem;
    }
    
    /* Founder section mobile adjustments */
    .founder-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .founder-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .founder-credentials {
        flex-direction: column;
        gap: 1rem;
    }
    
    .founder-image img {
        border-radius: var(--border-radius);
        box-shadow: 0 4px 20px var(--color-shadow);
    }
    
    .founder-featured {
        margin: 2rem 0;
    }
    
    .featured-link {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
        background: var(--color-light-bg);
        border-radius: var(--border-radius);
    }
    
    .featured-logo {
        max-width: 120px;
        height: auto;
    }
    
    .impact-item,
    .benefit-item {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .impact-item h3,
    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .impact-item p,
    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .impact-icon,
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-light-bg);
        border-radius: 50%;
        box-shadow: 0 2px 8px var(--color-shadow);
    }
    
    .impact-icon i,
    .benefit-icon i {
        font-size: 1.5rem;
        color: var(--color-primary);
    }
    
    /* Better mobile card styling */
    .impact-item,
    .benefit-item {
        background: var(--color-white);
        border-radius: var(--border-radius);
        box-shadow: 0 2px 12px var(--color-shadow);
        transition: var(--transition);
    }
    
    .impact-item:hover,
    .benefit-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px var(--color-shadow-hover);
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
        margin: 3rem 0;
        padding: 0 1rem;
    }
    
    /* Principles preview mobile adjustments */
    .principles-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    /* Single column on very small screens */
    @media (max-width: 480px) {
        .principles-preview {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        /* Hide one principles card on very small screens */
        .principles-preview .principle-preview-item:nth-child(5) {
            display: none;
        }
        
        /* Vision and Mission sections for very small screens */
        .vision-content,
        .mission-content,
        .intro-content,
        .camp-overview-content,
        .cta-content {
            gap: 2rem;
            margin: 1.5rem 0;
        }
        
        /* Founder section for very small screens */
        .founder-content {
            gap: 2rem;
            margin: 1.5rem 0;
        }
        
        .impact-grid,
        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin: 2rem 0;
            padding: 0 0.75rem;
        }
        
        .impact-item,
        .benefit-item {
            padding: 1.25rem 0.75rem;
        }
        
        .impact-item h3,
        .benefit-item h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .impact-item p,
        .benefit-item p {
            font-size: 0.85rem;
            line-height: 1.4;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .section-text {
            font-size: 0.95rem;
            line-height: 1.6;
        }
    }
    
    /* Tablet principles preview */
    @media (min-width: 481px) and (max-width: 768px) {
        .principles-preview {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        /* Tablet vision and mission optimizations */
        .vision-content,
        .mission-content,
        .intro-content,
        .camp-overview-content,
        .cta-content {
            gap: 3rem;
            margin: 2.5rem 0;
        }
        
        /* Tablet founder section layout */
        #founder .founder-content {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin: 2.5rem 0;
            min-height: auto;
            margin-bottom: 2.5rem;
            width: 100%;
            flex-direction: row-reverse;
        }
        
        #founder .founder-image {
            flex: 0 0 40%;
            position: static;
            height: auto;
            z-index: 1;
            text-align: center;
        }
        
        #founder .founder-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            max-height: 400px;
            object-position: center;
            max-width: 300px;
        }
        
        #founder .founder-text {
            flex: 1;
            max-width: none;
            position: relative;
            z-index: 2;
            margin-bottom: 1.5rem;
            height: auto;
            min-height: auto;
        }
        
        .impact-grid,
        .benefits-grid {
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .section-title {
            font-size: 2.4rem;
        }
        
        .section-subtitle {
            font-size: 1.4rem;
        }
    }
    
    /* Desktop principles preview */
    @media (min-width: 769px) {
        .principles-preview {
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        
        /* Show all principles cards on desktop */
        .principles-preview .principle-preview-item:nth-child(5) {
            display: block;
        }
    }
    
    .principle-preview-item {
        padding: 1rem;
    }
    
    .principle-preview-item span {
        font-size: 0.85rem;
    }
    
    /* Better mobile principles preview */
    .principle-preview-item {
        text-align: center;
        padding: 1.5rem 1rem;
        background: var(--color-white);
        border-radius: var(--border-radius);
        box-shadow: 0 2px 12px var(--color-shadow);
    }
    
    .principle-preview-item img {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }
    
    /* Highlights grid mobile adjustments */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem 0;
    }
    

    
    /* Show consolidated card, hide separate cards on mobile */
    .highlight-card-consolidated {
        display: block;
    }
    
    .highlight-card-separate {
        display: none;
    }
    
    /* Tablet highlights grid */
    @media (min-width: 768px) and (max-width: 1023px) {
        .highlights-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
    }
    
    /* Desktop highlights grid - show separate cards, hide consolidated */
    @media (min-width: 1024px) {
        .highlights-grid {
            display: flex !important;
            flex-wrap: nowrap !important;
            gap: 1.5rem !important;
            margin: 3rem 0 !important;
            justify-content: center !important;
            grid-template-columns: none !important;
        }
        
        .highlight-card {
            flex: 0 0 calc(16.666% - 1.25rem) !important;
            min-width: 0 !important;
            width: auto !important;
        }
        
        .highlight-card-consolidated {
            display: none !important;
        }
        
        .highlight-card-separate {
            display: block !important;
        }
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    /* Better mobile highlights */
    .highlight-card {
        text-align: center;
        background: var(--color-white);
        border-radius: var(--border-radius);
        box-shadow: 0 2px 12px var(--color-shadow);
        transition: var(--transition);
    }
    
    .highlight-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px var(--color-shadow-hover);
    }
    
    .highlight-icon {
        margin-bottom: 1rem;
    }
    
    .highlight-icon i {
        font-size: 2rem;
        color: var(--color-primary);
    }
    
    /* Testimonials mobile adjustments */
    .testimonials-carousel {
        padding: 0 1rem;
    }
    
    /* Hide navigation on mobile for better UX */
    .testimonials-nav {
        display: none;
    }
    
    /* Show indicators on mobile */
    .testimonial-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-content quote {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Better mobile testimonials */
    .testimonial {
        background: var(--color-white);
        border-radius: var(--border-radius);
        box-shadow: 0 2px 12px var(--color-shadow);
        margin: 0 1rem;
    }
    
    .testimonial-stars {
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid var(--color-border-light);
    }
    

    
    /* CTA content layout - Desktop (same as vision & values) */
    .cta-content {
        display: flex;
        align-items: flex-start;
        gap: 3rem;
        margin: 3rem 0 2rem 0;
        min-height: 400px;
        width: 100%;
    }

    .cta-text {
        flex: 1;
        max-width: none;
        position: relative;
        z-index: 2;
    }

    .cta-image {
        flex: 0 0 45%;
        position: static;
        height: auto;
        z-index: 1;
    }

    .cta-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        max-height: 500px;
        object-position: center;
    }
    
    /* CTA buttons section */
    .cta-buttons {
        display: flex;
        justify-content: center;
        margin: 2rem 0;
    }
    
    .cta-buttons .contact-info {
        display: flex;
        gap: 2rem;
        justify-content: center;
        width: 100%;
        max-width: 600px;
    }
    
    /* CTA buttons section */
    .cta-buttons {
        display: flex;
        justify-content: center;
        margin: 2rem 0;
    }
    
    .cta-buttons .contact-info {
        display: flex;
        gap: 2rem;
        justify-content: center;
        width: 100%;
        max-width: 600px;
    }
    
    .cta-buttons .contact-method {
        flex: 1;
        min-width: 0;
        width: 280px;
        max-width: 280px;
    }
    
    /* Show CTA image on desktop */
    @media (min-width: 768px) {
        .cta-image {
            display: block;
        }
    }

    /* CTA section mobile adjustments */
    .cta-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
        grid-template-columns: 1fr !important;
    }
    
    /* Mobile contact subtitle and text centering */
    .contact-subtitle {
        text-align: center !important;
    }
    
    .contact-text {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Mobile CTA buttons */
    .cta-buttons {
        margin: 1.5rem 0;
    }
    
    .cta-buttons .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons .contact-method {
        width: 100%;
        max-width: 100%;
    }
    
    /* Mobile CTA section contact methods */
    .cta-section .contact-method {
        width: 100% !important;
        max-width: 100% !important;
    }
    

    
    .cta-section .container {
        max-width: 100%;
        padding: 0 20px;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal overflow on mobile */
    .cta-section,
    .cta-content,
    .cta-text,
    .cta-image {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Ensure CTA section fits on mobile */
    .cta-text,
    .cta-image {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        grid-column: 1 !important;
    }
    
    /* Override desktop grid layout for mobile */
    .cta-section .contact-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        grid-template-columns: 1fr !important;
    }
    

    
    .cta-text {
        order: 2;
    }
    
    .cta-image {
        order: 1;
    }
    
    /* Hide CTA image on mobile */
    .cta-image {
        display: none;
    }
    
    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
        width: 100%;
        flex-direction: column !important;
    }
    
    /* Better mobile CTA section */
    .cta-text {
        background: var(--color-light-bg);
        padding: 2rem;
        border-radius: var(--border-radius);
        border: 1px solid var(--color-border);
    }
    
    .cta-image {
        background: var(--color-white);
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: 0 2px 12px var(--color-shadow);
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Contact method mobile improvements */
    .contact-method {
        display: block !important;
        text-align: center;
        padding: 1rem;
        background: var(--color-light-bg);
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
        width: 100%;
        grid-column: 1 !important;
    }
    
    .contact-method:last-child {
        margin-bottom: 0;
    }
    
    .contact-method h4 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
        color: var(--color-primary);
    }
    
    .contact-method h4 i {
        font-size: 1rem;
        color: var(--color-primary);
    }
    
    .contact-method a {
        display: block;
        padding: 8px 0;
        text-decoration: none;
        color: var(--color-primary);
        font-weight: 500;
        word-break: break-word;
        text-align: center;
        line-height: 1.4;
        font-size: 0.9rem;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure contact methods are fully visible on mobile */
    .contact-method h4 {
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
        color: var(--color-primary);
    }
    
    .contact-method p {
        margin: 0;
    }
    
    /* Footer mobile adjustments */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Better mobile footer */
    .footer-brand {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand-image img {
        max-width: 80px;
        height: auto;
        margin: 0 auto 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-primary);
        color: white;
        border-radius: 50%;
        transition: var(--transition);
    }
    
    .social-links a:hover {
        background: var(--color-primary-dark);
        transform: scale(1.1);
    }
    
    /* Slideshow navigation mobile adjustments */
    .slideshow-nav {
        display: none; /* Hide on mobile for better UX */
    }
    
    .slideshow-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    
    /* Better mobile slideshow */
    .hero-slideshow {
        min-height: 80vh;
    }
    
    .hero-slide {
        background-size: cover;
        background-position: center;
    }
    
    .hero-overlay {
        background: none;
        padding: 2rem 1rem;
    }
    
    /* Ensure hero text is readable without overlay */
    .hero-title {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    .hero-description {
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    /* Touch-friendly improvements */
    .btn {
        min-height: 44px; /* iOS recommended minimum */
        padding: 12px 24px;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better mobile spacing */
    .section {
        padding: 3rem 0;
    }
    
    .section .container {
        padding: 0 20px;
    }
    
    /* Mobile text improvements */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Better mobile form elements */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better mobile buttons and interactive elements */
    .btn {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: var(--border-radius);
        transition: var(--transition);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-primary {
        background: var(--color-primary);
        color: white;
        border: 2px solid var(--color-primary);
    }
    
    .btn-primary:hover {
        background: var(--color-primary-dark);
        border-color: var(--color-primary-dark);
        transform: translateY(-2px);
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--color-primary);
        border: 2px solid var(--color-primary);
    }
    
    .btn-secondary:hover {
        background: var(--color-primary);
        color: white;
        transform: translateY(-2px);
    }
}
    
    .timeline-item,
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-categories {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        margin: 2rem 0;
        gap: 1rem;
    }
    
    .faq-category {
        width: auto;
        min-width: 120px;
        text-align: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
}



@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Extra small mobile adjustments */
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section .container {
        padding: 0 15px;
    }
    
    /* Extra small mobile improvements */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .vision-image,
    .mission-image,
    .intro-image {
        height: auto;
    }
    
    .values-grid,
    .impact-grid,
    .mission-grid,
    .approach-grid,
    .philosophy-grid,
    .benefits-grid,
    .research-grid,
    .program-highlights,
    .themes-grid,
    .packing-lists,
    .testimonials-grid,
    .impact-stories,
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Extra small principles preview */
    .principles-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .principle-preview-item {
        padding: 1rem 0.75rem;
    }
    
    .principle-preview-item span {
        font-size: 0.8rem;
    }
    
    .principle-preview-item img {
        width: 40px;
        height: 40px;
    }
    
    /* Extra small highlights grid */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
        margin: 1.5rem 0;
    }
    
    .highlight-card {
        padding: 1rem 0.75rem;
    }
    
    .highlight-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .highlight-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Extra small testimonials */
    .testimonials-carousel {
        padding: 0 0.5rem;
    }
    
    .testimonial-content {
        padding: 1rem 0.75rem;
    }
    
    .testimonial-content quote {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    /* Extra small founder section */
    .founder-content {
        gap: 1.5rem;
    }
    
    .founder-image {
        max-width: 250px;
    }
    
    .founder-intro {
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .founder-intro-about {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .founder-philosophy {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .founder-buttons-centered {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    

    
    .contact-method h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-method a {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    /* Extra small contact improvements */
    .contact-method {
        display: block !important;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        grid-column: 1 !important;
        width: 100%;
    }
    
    .contact-method h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        gap: 6px;
    }
    
    .contact-method h4 i {
        font-size: 0.9rem;
    }
    
    .contact-method a {
        font-size: 0.85rem;
        padding: 6px 0;
        line-height: 1.3;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-all;
        text-align: center;
    }
    
    /* Extra small footer */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 0 0.5rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    /* Footer text improvements */
    .footer-section a:not(.social-links a) {
        color: var(--color-text-light);
        text-decoration: none;
        line-height: 1.6;
    }
    
    .footer-bottom p {
        text-align: center;
        line-height: 1.5;
    }
}

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

/* Browser compatibility fixes */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ensure consistent background rendering across browsers */
.section,
.section:nth-child(even),
.section:nth-child(odd) {
    -webkit-background-clip: border-box;
    -moz-background-clip: border-box;
    background-clip: border-box;
    -webkit-background-origin: border-box;
    -moz-background-origin: border-box;
    background-origin: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
    font-weight: 300;
    scroll-behavior: smooth;
}

/* Ensure proper spacing for anchored sections */
section[id] {
    scroll-margin-top: 120px; /* Adjust based on your navbar height */
}

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

/* Override container centering for page headers */
.page-header .container {
    margin: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* Topbar */
.topbar {
    background: #1a202c;
    color: white;
    padding: 12px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px; /* Increased height for better text spacing */
    box-sizing: border-box;
}

.topbar-social {
    position: absolute;
    right: 16px;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.topbar-social:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.topbar-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-link span {
    font-weight: 600;
}

.topbar-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.topbar-link:hover i {
    transform: translateX(3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 48px; /* Account for topbar height */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: 80px; /* Ensure consistent height */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(74, 124, 89, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #1a202c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
    min-height: 40px;
}

.logo-image {
    display: flex;
    align-items: center;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-row {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.logo:hover {
    transform: scale(1.05);
}

/* Ensure logo link maintains appearance */
.logo {
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-family: 'Shadows Into Light', cursive;
    font-weight: 700;
    background: linear-gradient(135deg, #1a202c 0%, #4a7c59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    line-height: 1;
    white-space: nowrap;
}

.logo-text-small {
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Shadows Into Light', cursive;
    font-weight: 600;
    color: #4a7c59;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
    opacity: 0.9;
}

.logo-text-footer {
    font-family: 'Shadows Into Light', cursive;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    line-height: 1;
    white-space: nowrap;
}

.logo-text-footer-small {
    font-family: 'Shadows Into Light', cursive;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    line-height: 1;
}

/* .logo-icon removed */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    flex: 1;
    margin: 0 2rem;
    z-index: 1001;
    height: 80px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    white-space: nowrap;
    text-align: center;
    min-width: max-content;
    word-break: keep-all;
    hyphens: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: 1;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.1), transparent); */
    transition: left 0.5s;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: #1a202c;
    background-color: rgba(74, 124, 89, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.15);
    border-color: rgba(74, 124, 89, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 124, 89, 0.1);
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
}

.hamburger:hover {
    background-color: rgba(74, 124, 89, 0.1);
    border-color: rgba(74, 124, 89, 0.2);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #4a7c59, #1a202c);
    margin: 2px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
}

.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);
}

/* Submenu Styles - Clean, consolidated implementation */
.nav-item-dropdown {
    position: relative;
    padding: 0;
    margin: 0;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 124, 89, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 8px 0;
    margin-top: 8px;
    pointer-events: none;
    will-change: opacity, visibility, transform;
    backface-visibility: hidden;
}

/* Desktop submenu hover behavior - CSS-only for smooth performance */
@media (min-width: 769px) {
    /* Ensure submenu is properly positioned and styled for hover */
    .submenu {
        margin-top: 0;
        pointer-events: none;
    }
    
    /* Show submenu on hover */
    .nav-item-dropdown:hover .submenu,
    .nav-item-dropdown:focus-within .submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    
    /* Smooth arrow rotation on hover */
    .nav-item-dropdown:hover .dropdown-arrow,
    .nav-item-dropdown:focus-within .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Keep submenu open when hovering over it */
    .submenu:hover {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

.submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

/* Clean dropdown implementation - no invisible bridges needed */

.submenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0;
    transform: none;
    min-height: 44px;
}

.submenu a:hover {
    background: rgba(74, 124, 89, 0.08);
    color: #4a7c59;
    transform: none;
}

.submenu a:focus {
    background: rgba(74, 124, 89, 0.12);
    color: #4a7c59;
    outline: 2px solid rgba(74, 124, 89, 0.3);
    outline-offset: -2px;
}

.submenu a::before {
    display: none;
}

/* Desktop hover effect handled by JavaScript */

.dropdown-arrow {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #4a7c59;
}

/* Dropdown arrow rotation handled by JavaScript */

/* Navigation CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
    overflow: visible;
    white-space: nowrap;
}

.nav-cta .btn {
    padding: 8px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

/* Hide mobile CTA on desktop */
.mobile-cta-item {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 2;
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.slide-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.slide-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slide-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slide-nav-btn.prev {
    left: 30px;
}

.slide-nav-btn.next {
    right: 30px;
}

.slide-nav-btn i {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: white;
    transform: scale(1.3);
}

/* Responsive adjustments for slideshow */
@media (max-width: 768px) {
    .slide-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .slide-nav-btn.prev {
        left: 20px;
    }
    
    .slide-nav-btn.next {
        right: 20px;
    }
    
    .slideshow-indicators {
        bottom: 30px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 6px 0;
    }
    
    .topbar-link {
        font-size: 0.85rem;
        gap: 6px;
    }
    

    

    
    .slide-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .slide-nav-btn.prev {
        left: 15px;
    }
    
    .slide-nav-btn.next {
        right: 15px;
    }
    
    .slideshow-indicators {
        bottom: 25px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.3) 25%, 
        rgba(0, 0, 0, 0.35) 50%, 
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-overlay {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    padding-right: 40px;
}

.hero-content {
    max-width: 500px;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    text-align: right;
    transform: none;
    will-change: auto;
    margin-left: auto;
    margin-bottom: 1.5rem;

    margin-right: 0;
    width: 100%;
    padding-right: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #4a7c59;
    font-size: 0.8rem;
}

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

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.03em;
    color: #ffffff;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 2px;
    background: #4a7c59;
}

.eyebrow-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.chip {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 600;
    line-height: 1.7;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.03em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-info {
    margin-bottom: 3rem;
}

.hero-description {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7), 1px 1px 6px rgba(0, 0, 0, 0.8);
    max-width: 650px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
    justify-content: flex-end;
    align-items: center;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-buttons .btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(3px);
}



.launch-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.launch-date:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.launch-date i {
    color: #4a7c59;
    font-size: 0.8rem;
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature i {
    color: #4a7c59;
    font-size: 0.7rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    border: 1px solid #1a202c;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section {
    padding: 120px 0;
    background-color: #ffffff !important;
    position: relative;
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
}

.section:nth-child(even) {
    background-color: #f4f6f8 !important;
    background: -webkit-linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    background: -moz-linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    background: -o-linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.2), transparent);
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #4a7c59;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #4a7c59;
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.section-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-weight: 300;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(74, 124, 89, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-icon {
    margin-bottom: 1.5rem;
}

.highlight-icon i {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(74, 124, 89, 0.2);
}

.highlight-item h3 {
    font-family: 'Quicksand', sans-serif;
    color: #1a202c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-item p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Guiding Principles Section */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
    padding: 0 2rem;
}

.principle-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(74, 124, 89, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.principle-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(74, 124, 89, 0.2);
    transform: translateY(-5px);
}

.principle-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.principle-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.principle-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    text-align: center;
}

.principle-header h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-align: center;
}

.principle-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.principle-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #4a5568;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.principle-toggle:hover {
    background-color: #f7fafc;
    color: #2d3748;
}

.principle-toggle.expanded i {
    transform: rotate(180deg);
}

.principle-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    flex-grow: 1;
    margin: 0;
    opacity: 1;
    max-height: none;
    overflow: visible;
    transition: all 0.3s ease;
    padding: 0;
    display: block;
}

.principle-description.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.principle-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #4a7c59;
}

.principle-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(26, 32, 44, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(74, 124, 89, 0.2);
}

.principle-card:hover .principle-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2) 0%, rgba(26, 32, 44, 0.2) 100%);
    border-color: rgba(74, 124, 89, 0.3);
}

.principle-icon i {
    font-size: 2rem;
    color: #4a7c59;
    filter: drop-shadow(0 2px 8px rgba(74, 124, 89, 0.3));
    transition: all 0.3s ease;
}

.principle-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon i {
    color: #1a202c;
    filter: drop-shadow(0 4px 12px rgba(74, 124, 89, 0.4));
}

.principle-card:hover .principle-icon img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(74, 124, 89, 0.4));
}

/* Program Grid */
.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.program-column {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 124, 89, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.program-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 124, 89, 0.25);
}

.program-list {
    list-style: none;
    text-align: left;
}

.program-list li {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
    font-weight: 400;
    transition: all 0.3s ease;
}

.program-list li:hover {
    color: #1a202c;
    transform: translateX(5px);
}

.program-list li::before {
    content: "✦";
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(74, 124, 89, 0.3));
}

.program-column h3 {
    font-family: 'Quicksand', sans-serif;
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.program-details {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 124, 89, 0.15);
    border-radius: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.program-details h3 {
    font-family: 'Quicksand', sans-serif;
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-details p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Parent Info Grid */
.parent-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-category {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 124, 89, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 124, 89, 0.25);
}

.info-category h3 {
    font-family: 'Quicksand', sans-serif;
    color: #1a202c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Info List */
.info-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.info-list li {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    position: relative;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 124, 89, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 124, 89, 0.2);
}

.info-list li::before {
    content: "●";
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(74, 124, 89, 0.3));
}

/* Tuition Info */
.tuition-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05) 0%, rgba(26, 32, 44, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(74, 124, 89, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-option {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 124, 89, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 124, 89, 0.25);
}

.pricing-option h3 {
    font-family: 'Quicksand', sans-serif;
    color: #1a202c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tuition-text {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.tuition-note {
    color: #4a7c59;
    font-size: 0.9rem;
    font-weight: 500;
}

.registration-info {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 124, 89, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.registration-info h3 {
    font-family: 'Quicksand', sans-serif;
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.registration-info p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Info */
.contact-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-method {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 124, 89, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 124, 89, 0.25);
}

.contact-method h3 {
    font-family: 'Quicksand', sans-serif;
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 400;
}

.contact-info i {
    color: #4a7c59;
    font-size: 1.3rem;
    width: 24px;
    filter: drop-shadow(0 2px 4px rgba(74, 124, 89, 0.3));
}

.contact-note {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 124, 89, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-note h3 {
    font-family: 'Quicksand', sans-serif;
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-note p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    margin-top: 2rem;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.5), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(26, 32, 44, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    text-align: left;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section:first-child {
    text-align: left;
}

.footer-section:not(:first-child) {
    text-align: right;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.footer-brand-image {
    display: flex;
    align-items: center;
}

.footer-brand-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-text-row {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo-text {
    font-family: 'Shadows Into Light', cursive;
    font-weight: 700;
    background: linear-gradient(135deg, #1a202c 0%, #4a7c59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    position: relative;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-section h3 {
    font-family: 'Quicksand', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4a7c59, #ffffff);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

.footer-section:hover h3 {
    color: #ffffff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #4a7c59;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(74, 124, 89, 0.3);
    background-color: rgba(74, 124, 89, 0.08);
    padding: 6px 8px;
    border-radius: 8px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #4a7c59, transparent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links i {
    font-size: 0.8rem;
    color: #4a7c59;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.6), transparent);
}

.footer-bottom p {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: rgba(74, 124, 89, 0.25);
    border-color: rgba(74, 124, 89, 0.6);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

.footer-bottom .social-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    width: auto;
    height: auto;
    position: relative;
    overflow: hidden;
}

.footer-bottom .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-bottom .social-links a:hover::before {
    left: 100%;
}

.footer-bottom .social-links a:hover {
    background: rgba(74, 124, 89, 0.3);
    border-color: rgba(74, 124, 89, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 124, 89, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading Animation */
body:not(.loaded) .hero-content {
    opacity: 0;
    transform: translateY(50px);
}

body.loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

/* Enhanced Card Hover Effects */
.highlight-item,
.principle-card,
.program-column,
.info-category,
.contact-method,
.pricing-option {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.highlight-item:hover,
.principle-card:hover,
.program-column:hover,
.info-category:hover,
.contact-method:hover,
.pricing-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Button States */
.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.3);
}

/* Enhanced Navigation States */
.nav-menu a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.3);
    background-color: rgba(74, 124, 89, 0.1);
}

/* Smooth Section Transitions */
.section {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Enhanced Footer Links */
.footer-links a:focus {
    outline: 2px solid #4a7c59;
    outline-offset: 2px;
    color: #4a7c59;
    text-shadow: 0 0 8px rgba(74, 124, 89, 0.3);
}

.social-links a:focus {
    outline: 2px solid #4a7c59;
    outline-offset: 2px;
    background: rgba(74, 124, 89, 0.25);
    border-color: rgba(74, 124, 89, 0.6);
    color: #ffffff;
}

.footer-bottom .social-links a:focus {
    outline: 2px solid #4a7c59;
    outline-offset: 2px;
    background: rgba(74, 124, 89, 0.3);
    border-color: rgba(74, 124, 89, 0.6);
    color: #ffffff;
}

/* Enhanced Mobile Menu */
.nav-menu {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure navigation is always visible and fixed */
.navbar,
.topbar {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

/* Ensure proper z-index stacking */
.topbar {
    z-index: 1001 !important;
}

.navbar {
    z-index: 1000 !important;
}



/* Enhanced Hamburger Animation */
.hamburger span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a7c59, #1a202c);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1a202c, #4a7c59);
}

/* Enhanced Focus States for Accessibility */
*:focus {
    outline: none;
}

.btn:focus,
.nav-menu a:focus,
.dropdown-toggle:focus {
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.3);
}

/* Enhanced submenu focus states */
.submenu a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.3);
    background: rgba(74, 124, 89, 0.12);
    color: #4a7c59;
}

/* Improved submenu accessibility */
.nav-item-dropdown a[aria-expanded="true"] {
    background-color: rgba(74, 124, 89, 0.08);
    color: #1a202c;
}

/* Smooth transitions for all interactive elements */
.nav-item-dropdown,
.submenu,
.dropdown-arrow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Image Loading */
.principle-icon img {
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.principle-card:hover .principle-icon img {
    filter: brightness(1) contrast(1.2);
}

/* Enhanced Section Dividers */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.3), transparent);
    border-radius: 1px;
}

/* Enhanced Container Shadows */
.container {
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 20px;
}

/* Enhanced Typography */
.section-title,
.hero-title {
    text-rendering: optimizeLegibility;
    -webkit-font-feature-settings: "kern" 1;
    font-feature-settings: "kern" 1;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .topbar {
        padding: 8px 0;
        padding-right: 60px; /* Make room for social icon on mobile */
    }
    
    .topbar-link {
        font-size: 0.9rem;
        gap: 8px;
        max-width: calc(100% - 80px); /* Prevent text overflow */
    }
    
    .hero {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    /* Hero benefits mobile adjustments */
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .benefit-chip {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .nav-menu {
        position: fixed !important;
        right: -100% !important;
        top: 128px !important; /* 48px topbar height + 80px navbar height */
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(30px) !important;
        width: 100% !important;
        text-align: center !important;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
        padding: 0 !important;
        z-index: 1001 !important;
        border-bottom: 1px solid rgba(74, 124, 89, 0.1) !important;
        height: calc(100vh - 128px) !important;
        overflow-y: auto !important;
        flex: none !important;
        margin: 0 !important;
        /* Ensure proper stacking context for submenus */
        z-index: 999 !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(74, 124, 89, 0.08);
        z-index: 1;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.6s; }
    
    /* Logo mobile adjustments */
    .logo {
        gap: 8px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-text-small {
        font-size: 0.85rem;
    }
    
    /* Better mobile navigation spacing */
    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(74, 124, 89, 0.08);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    /* Mobile dropdown improvements */
    .nav-item-dropdown {
        position: relative;
    }
    
    .nav-item-dropdown .submenu {
        position: static !important;
        background: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: none !important;
        z-index: 1002 !important;
        width: 100% !important;
        border-radius: 8px !important;
        transition: none !important;
        overflow: visible !important;
        max-height: none !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .nav-item-dropdown.active .submenu {
        display: block !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .submenu li {
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .submenu a {
        font-size: 1rem !important;
        color: var(--color-text-light) !important;
        background: transparent !important;
        padding: 12px 20px 12px 40px !important;
        border: none !important;
        text-align: left !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .submenu a:first-child {
        border-radius: 0 !important;
    }
    
    .submenu a:last-child {
        border: none !important;
        border-radius: 0 !important;
    }
    
    /* Mobile CTA Button */
    .mobile-cta-item {
        display: none;
        padding: 1.5rem 0;
        text-align: center;
        border-top: 1px solid rgba(74, 124, 89, 0.08);
        margin-top: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active .mobile-cta-item {
        display: block;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.7s;
    }
    
    .mobile-cta-item .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 16px 32px;
        font-size: 1.1rem;
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
        color: white;
        border: 1px solid #1a202c;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .mobile-cta-item .btn:hover {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        transform: translateY(-1px);
        color: white;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 16px 20px;
        margin: 0;
        display: block;
        background: transparent;
        border: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        color: #4a5568;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-align: center;
    }
    
    .nav-menu a:hover {
        background: rgba(74, 124, 89, 0.01);
        color: #2d3748;
    }
    
    .nav-menu a:active {
        background: rgba(74, 124, 89, 0.08);
        transition: background 0.1s ease;
    }
    
    /* Hide desktop nav-cta on mobile */
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 1001;
        padding: 12px;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hamburger.active {
        background: rgba(74, 124, 89, 0.15);
        border-color: rgba(74, 124, 89, 0.3);
        transform: scale(1.05);
    }
    
    .hamburger:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .hero-overlay {
        padding: 0 20px;
    }
    
    .eyebrow-chips {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .chip {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        padding: 16px 28px;
        font-size: 0.95rem;
        text-align: center;
        min-width: 200px;
    }
    

    
    .hero-features {
        flex-direction: row;
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo {
        margin-left: 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-text-small {
        font-size: 0.85rem;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-text-row {
        gap: 3px;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .principle-card {
        padding: 2.5rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 900px;
        justify-content: center;
        justify-items: center;
    }
    
    /* Mobile Submenu Styles - Clean, consolidated */
    .navbar .nav-menu .submenu {
        position: static;
        background: #ffffff;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 0;
        min-width: 100%;
        border-radius: 8px;
        display: none;
        z-index: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: all 0.3s ease;
        pointer-events: auto;
        width: 100%;
        height: auto;
        overflow: hidden;
        max-height: 0;
    }
    
    /* Active state for mobile submenus */
    .navbar .nav-menu .nav-item-dropdown.active .submenu {
        display: block;
        max-height: 500px;
        overflow: visible;
    }
    
    .submenu::before {
        display: none;
    }
    
    .navbar .nav-menu .submenu a {
        padding: 12px 20px 12px 40px;
        font-size: 1rem;
        color: #4a7c59;
        border-bottom: 1px solid rgba(74, 124, 89, 0.1);
        transition: all 0.2s ease;
        text-align: left;
        position: relative;
        z-index: auto;
        pointer-events: auto;
        background: #ffffff;
        margin: 0;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 44px;
    }
    
    .navbar .nav-menu .submenu a:hover {
        background: rgba(74, 124, 89, 0.1);
        color: #2d3748;
    }
    
    .dropdown-arrow {
        margin-left: 8px;
        font-size: 0.9rem;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 1024px) {
    .hero {
        background-size: cover;
        background-position: center;
    }
    
    .hero-overlay {
        padding: 0 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
    
    /* Ensure navigation doesn't wrap on medium screens */
    .nav-container {
        padding: 0 30px;
        min-width: auto;
    }
    
    /* Tablet-specific navbar adjustments */
    .navbar .nav-menu {
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    .navbar .nav-menu a {
        padding: 0 12px;
        font-size: 0.9rem;
    }
    
    .navbar .nav-cta {
        margin-left: 1rem;
    }
    
    .navbar .nav-cta .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    /* Hide join waitlist button on tablet sizes */
    .navbar .nav-cta {
        display: none;
    }
    
    /* Disable href functionality for dropdown triggers on tablet */
    .navbar .nav-item-dropdown .dropdown-trigger {
        pointer-events: auto;
        cursor: pointer;
    }
    
    .navbar .nav-item-dropdown .dropdown-trigger:hover {
        cursor: pointer;
    }
    
    /* Ensure submenu items remain clickable */
    .navbar .nav-item-dropdown .submenu a {
        pointer-events: auto;
    }
    
    /* Tablet-specific dropdown behavior - override all other rules */
    .navbar .nav-item-dropdown .submenu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(74, 124, 89, 0.1) !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        min-width: 200px !important;
        z-index: 1001 !important;
        padding: 0.5rem 0 !important;
        display: none !important;
    }
    
    /* Show dropdown when active class is present - highest priority */
    .navbar .nav-item-dropdown.active .submenu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Completely disable hover behavior on tablet */
    .navbar .nav-item-dropdown:hover .submenu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Force active state to override everything */
    .navbar .nav-item-dropdown.active .submenu,
    .navbar .nav-item-dropdown.active:hover .submenu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Override main dropdown hover behavior completely on tablet */
    .navbar .nav-item-dropdown .submenu {
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    .navbar .nav-item-dropdown.active .submenu {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* Override the main submenu CSS completely for tablet */
    .submenu {
        transform: none !important;
        left: 0 !important;
        margin-top: 0 !important;
        pointer-events: none !important;
    }
    
    .navbar .nav-item-dropdown.active .submenu {
        pointer-events: auto !important;
    }
    
    /* Additional tablet-specific overrides */
    .nav-item-dropdown .submenu {
        transform: none !important;
        left: 0 !important;
        margin-top: 0 !important;
        pointer-events: none !important;
    }
    
    .nav-item-dropdown.active .submenu {
        pointer-events: auto !important;
    }
    
    /* Force override of all submenu rules for tablet */
    .submenu {
        transform: none !important;
        left: 0 !important;
        margin-top: 0 !important;
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .nav-item-dropdown.active .submenu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* Tablet-specific dropdown behavior - click to expand/retract */
    .navbar .nav-item-dropdown .submenu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(74, 124, 89, 0.1) !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        min-width: 200px !important;
        z-index: 1001 !important;
        padding: 0.5rem 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .navbar .nav-item-dropdown.active .submenu {
        display: block !important;
    }
    
    /* Disable hover behavior on tablet */
    .navbar .nav-item-dropdown:hover .submenu {
        display: none !important;
    }
    
    /* Ensure tablet dropdowns are clickable */
    .navbar .nav-item-dropdown .dropdown-trigger {
        cursor: pointer !important;
    }
    
    /* Force tablet dropdown visibility when active */
    .navbar .nav-item-dropdown.active .submenu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* Large screen optimization */
@media (min-width: 1200px) {
    .nav-container {
        max-width: 1400px;
        padding: 0 60px;
    }
    
    /* Ensure dropdown triggers work normally on desktop */
    .navbar .nav-item-dropdown .dropdown-trigger {
        pointer-events: auto;
    }
    
    /* Ensure desktop hover behavior works properly */
    .navbar .nav-item-dropdown .submenu {
        pointer-events: none;
    }
    
    .navbar .nav-item-dropdown:hover .submenu {
        pointer-events: auto;
    }
    
    /* Ensure desktop hover behavior is not interfered with */
    .nav-item-dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

/* iPad Pro and similar tablet landscape optimization */
@media (min-width: 1024px) and (max-width: 1199px) and (orientation: landscape) {
    .nav-container {
        padding: 0 40px;
    }
    
    .navbar .nav-menu {
        gap: 2rem;
        margin: 0 1.5rem;
    }
    
    .navbar .nav-menu a {
        padding: 0 16px;
        font-size: 0.92rem;
    }
    
    .navbar .nav-cta {
        margin-left: 1.5rem;
    }
    
    .navbar .nav-cta .btn {
        padding: 8px 22px;
        font-size: 0.92rem;
    }
    
    /* Disable href functionality for dropdown triggers on iPad Pro */
    .navbar .nav-item-dropdown .dropdown-trigger {
        pointer-events: auto;
        cursor: pointer;
    }
    
    .navbar .nav-item-dropdown .dropdown-trigger:hover {
        cursor: pointer;
    }
    
    /* Ensure submenu items remain clickable */
    .navbar .nav-item-dropdown .submenu a {
        pointer-events: auto;
    }
    
    /* iPad Pro-specific dropdown behavior - click to expand/retract */
    .navbar .nav-item-dropdown .submenu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(74, 124, 89, 0.1) !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        min-width: 200px !important;
        z-index: 1001 !important;
        padding: 0.5rem 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .navbar .nav-item-dropdown.active .submenu {
        display: block !important;
    }
    
    /* Disable hover behavior on iPad Pro */
    .navbar .nav-item-dropdown:hover .submenu {
        display: none !important;
    }
    
    /* Override the main submenu CSS completely for iPad Pro */
    .submenu {
        transform: none !important;
        left: 0 !important;
        margin-top: 0 !important;
        pointer-events: none !important;
    }
    
    .navbar .nav-item-dropdown.active .submenu {
        pointer-events: auto !important;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
    
    .hero-overlay {
        padding: 0 15px;
    }
    
    .eyebrow-chips {
        justify-content: center;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .chip {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        text-align: center;
        min-width: 180px;
    }
    
    .launch-date {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .feature {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .nav-container {
        height: 70px;
    }
    

    

    
    .logo {
        font-size: 1.3rem;
        margin-left: 0;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-text-small {
        font-size: 0.6rem;
    }
    
    .logo {
        gap: 6px;
    }
    
    .logo-text-row {
        gap: 2px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .program-column {
        padding: 1.5rem;
    }
    
    .info-list li {
        padding: 1.2rem 1.5rem;
    }
    
    .principles-grid {
        padding: 0 1rem;
    }
    
    .principle-card {
        padding: 2rem 1.5rem;
    }
    
    .principle-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .principle-icon i {
        font-size: 1.8rem;
    }
}

/* Enhanced Section Spacing and Visual Hierarchy */
.section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
    margin: 0;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.3), transparent);
}

.section:nth-child(odd)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.2), transparent);
}

/* Enhanced Footer Bottom Links */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.5), transparent);
}

.footer-bottom .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-bottom .social-links a:hover {
    background: rgba(74, 124, 89, 0.3);
    border-color: rgba(74, 124, 89, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

/* Enhanced Visual Appeal - Additional Modern Touches */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(26, 32, 44, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.2), transparent);
}

/* Enhanced Card Shadows and Borders */
.highlight-item,
.principle-card,
.program-column,
.info-category,
.contact-method,
.pricing-option {
    position: relative;
    overflow: hidden;
}

.highlight-item::before,
.principle-card::before,
.program-column::before,
.info-category::before,
.contact-method::before,
.pricing-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a7c59, #1a202c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-item:hover::before,
.principle-card:hover::before,
.program-column:hover::before,
.info-category:hover::before,
.contact-method:hover::before,
.pricing-option:hover::before {
    transform: scaleX(1);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.loading-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(74, 124, 89, 0.2));
}

/* Spinning ring around the logo */
.loading-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(74, 124, 89, 0.1);
    border-top: 3px solid #4a7c59;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

/* Inner spinning ring */
.loading-logo::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(74, 124, 89, 0.15);
    border-top: 2px solid #4a7c59;
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Enhanced Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(74, 124, 89, 0.3);
    border-top: 2px solid #4a7c59;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Focus Indicators for Accessibility */
*:focus-visible {
    outline: 2px solid #4a7c59;
    outline-offset: 2px;
}

/* Enhanced Scrollbar for Webkit Browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a7c59, #1a202c);
    border-radius: 5px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1a202c, #4a7c59);
}

/* Enhanced Print Styles */
@media print {
    .navbar,
    .hero,
    .footer {
        display: none;
    }
    
    .section {
        padding: 40px 0;
        border: none;
        background: white;
    }
    
    .section-title {
        color: black;
        font-size: 2rem;
    }
    
    .section-text {
        color: black;
    }
}

/* Enhanced Section Transitions */
.section {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.section:hover {
    transform: translateY(-2px);
}

/* Enhanced Card Animations */
.highlight-item,
.principle-card,
.program-column,
.info-category,
.contact-method,
.pricing-option {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow, border-color;
    backface-visibility: hidden;
}

.highlight-item:hover,
.principle-card:hover,
.program-column:hover,
.info-category:hover,
.contact-method:hover,
.pricing-option:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 124, 89, 0.3);
}

/* Enhanced Button Interactions */
.btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Button with icon styling */
.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

/* Ensure buttons with icons maintain proper text alignment */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}





/* Enhanced Mobile Experience */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .section-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .highlight-item,
    .principle-card,
    .program-column,
    .info-category {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .program-grid {
        gap: 2rem;
    }
    
    .footer-content {
        gap: 2rem;
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .footer-section:first-child,
    .footer-section:not(:first-child) {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    .footer-brand {
        gap: 8px;
    }
    
    .footer-brand-text-row {
        gap: 3px;
    }
    
    .footer-bottom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    /* Enhanced mobile submenu touch targets - consolidated */
    .nav-item-dropdown > a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .submenu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 12px 20px 12px 40px;
        background: #ffffff;
        border-bottom: 1px solid rgba(74, 124, 89, 0.1);
    }
    
    .submenu a:last-child {
        border-bottom: none;
    }
    
    /* Better mobile submenu spacing */
    .submenu {
        margin: 0;
        border-radius: 8px;
        background: #ffffff;
        position: static;
        z-index: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        overflow: hidden;
        max-height: 0;
    }
    
    /* Active state for submenus */
    .nav-item-dropdown.active .submenu {
        max-height: 500px;
        overflow: visible;
    }
    
    .submenu a:first-child {
        border-top: 1px solid rgba(74, 124, 89, 0.1);
    }
    
    .submenu a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .section-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .highlight-item,
    .principle-card,
    .program-column,
    .info-category {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-width: 600px;
        justify-content: center;
        justify-items: center;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .program-grid {
        gap: 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        grid-template-columns: 1fr;
        padding: 0 1rem;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .footer-logo-text {
        font-size: 1.1rem;
    }
    
    .footer-brand {
        gap: 6px;
    }
    
    .footer-brand-text-row {
        gap: 2px;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a:hover {
        transform: translateY(-2px);
    }
    
    .footer-bottom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Performance optimizations for submenu - already included in main rules */

/* Improved touch interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-item-dropdown > a:hover {
        background-color: transparent;
    }
    
    .submenu a:hover {
        background-color: rgba(74, 124, 89, 0.08);
    }
}

/* Clean dropdown behavior - no conflicting rules */

/* Better focus management for screen readers - only on mobile */
@media (max-width: 768px) {
    .nav-item-dropdown:focus-within .submenu {
        outline: 2px solid rgba(74, 124, 89, 0.5);
        outline-offset: 2px;
    }
}

/* Smooth submenu transitions - already handled in main rules */

/* Enhanced High Contrast Mode */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .nav-menu a {
        border: 2px solid currentColor;
    }
    
    .section {
        border-bottom: 2px solid currentColor;
    }
}

/* Enhanced Dark Mode Support - Disabled for consistent cross-browser appearance */
/* @media (prefers-color-scheme: dark) {
    .section:nth-child(even) {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }
    
    .highlight-item,
    .principle-card,
    .program-column,
    .info-category,
    .contact-method,
    .pricing-option {
        background: rgba(26, 32, 44, 0.9);
        border-color: rgba(74, 124, 89, 0.3);
        color: #ffffff;
    }
    
    .section-title {
        color: #ffffff;
    }
    
    .section-text {
        color: rgba(255, 255, 255, 0.9);
    }
} */

/* Hero Benefits */
.hero-benefits {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-chip {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-chip:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.early-bird-banner {
    margin-top: 32px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.early-bird-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
}

.early-bird-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

.early-bird-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.early-bird-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.early-bird-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.early-bird-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

.early-bird-deadline {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Principles Preview */
.principles-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.principle-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.principle-preview-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.principle-preview-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.principle-preview-item:hover img {
    transform: scale(1.1);
}

.principle-preview-item span {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}



/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-cta .btn {
    margin: 0 auto;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    border: 2px solid #1a202c;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.section-cta .btn:hover {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 32, 44, 0.3);
}

/* Specific button styling for different contexts */
.tuition-note .btn {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    border: 2px solid #1a202c;
}

.tuition-note .btn:hover {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 32, 44, 0.3);
}

.founder-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.founder-buttons-centered {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.founder-text .btn {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    border: 2px solid #1a202c;
}

.founder-text .btn:hover {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 32, 44, 0.3);
}

/* Secondary button styling for buttons near primary CTA */
.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Program Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #68d391);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card .highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a7c59;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-card h3 {
    color: #2d3748;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced Tuition Tiers */
.tuition-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.tier-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.tier-card.featured {
    border-color: #f6ad55;
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

.tier-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    border-radius: 16px;
    z-index: -1;
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-card h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.tier-price {
    margin-bottom: 16px;
}

.tier-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a7c59;
    display: block;
}

.tier-price .period {
    color: #718096;
    font-size: 0.9rem;
}

.tier-note {
    color: #4a5568;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.tier-deadline {
    color: #e53e3e;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.tier-card .btn {
    width: 100%;
    margin-top: 16px;
}

.tuition-note {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.tuition-note p {
    margin-bottom: 20px;
    color: #2d3748;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    margin: 40px 0;
    min-height: 300px;
    overflow: hidden;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(74, 124, 89, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #f6ad55;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.testimonial-content blockquote::before,
.testimonial-content blockquote::after {
    content: '"';
    font-size: 2rem;
    color: #4a7c59;
    position: absolute;
    top: -10px;
    left: -20px;
}

.testimonial-content blockquote::after {
    left: auto;
    right: -20px;
}

.testimonial-author strong {
    display: block;
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 32px 0;
}

.testimonial-nav-btn {
    background: rgba(74, 124, 89, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a7c59;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: rgba(74, 124, 89, 0.2);
    transform: scale(1.1);
}

.testimonial-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.testimonial-nav-btn:disabled:hover {
    background: rgba(74, 124, 89, 0.1);
    transform: none;
}

.testimonial-indicators {
    display: flex;
    gap: 8px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 124, 89, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active,
.testimonial-indicator:hover {
    background: #4a7c59;
    transform: scale(1.2);
}

/* Founder Section */
.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
    margin-top: 3rem;
}

/* Desktop Founder Layout - Opposite of mission section (text left, image right) */
@media (min-width: 769px) {
    .founder-content {
        display: flex;
        align-items: flex-start;
        gap: 3rem;
        margin: 3rem 0;
        min-height: 400px;
        margin-bottom: 4rem;
        width: 100%;
        flex-direction: row-reverse;
    }
    
    .founder-image {
        flex: 0 0 45%;
        position: static;
        height: auto;
        z-index: 1;
        text-align: center;
    }
    
    .founder-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        max-height: 500px;
        object-position: center;
        max-width: 400px;
    }
    
    .founder-text {
        flex: 1;
        max-width: 500px;
        position: relative;
        z-index: 2;
        margin-bottom: 2rem;
    }
}

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

.founder-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}



.founder-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.founder-intro-about {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 20px;
}

.founder-philosophy {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 32px;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
}

.credential {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #4a5568;
}

.credential i {
    color: #4a7c59;
    font-size: 1.1rem;
    width: 20px;
}

/* Founder Featured Section */
.founder-featured {
    margin: 24px 0;
}

.featured-link {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.featured-link:hover {
    text-decoration: none;
    color: inherit;
}

.featured-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.featured-label {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-in {
    font-size: 1.2rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.2;
}

.featured-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.featured-link:hover .featured-logo {
    transform: scale(1.05);
}

/* Final CTA Section */
.cta-section {
    background: #ffffff;
    color: #2d3748;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    border-top: 1px solid rgba(74, 124, 89, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #68d391);
    border-radius: 2px;
}



.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out;
}

.cta-content .section-text {
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-content .section-title {
    font-size: 3rem;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content .section-text {
    font-size: 1.25rem;
    margin-bottom: 48px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}









.section-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 24px;
}

.section-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.contact-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.cta-section .contact-info {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 0;
}

.cta-section .contact-method {
    background: #f7fafc;
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 280px;
    max-width: 280px;
}

.cta-section .contact-method:hover {
    background: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 124, 89, 0.2);
}

.cta-section .contact-method h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-section .contact-method p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.cta-section .contact-method i {
    color: #4a7c59;
    margin-right: 10px;
    font-size: 1rem;
}

.cta-section .contact-method a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cta-section .contact-method a:hover {
    color: var(--color-primary-dark);
}

.cta-section .contact-note {
    background: #f7fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
}

.cta-section .contact-note:hover {
    background: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 124, 89, 0.2);
}

.cta-section .contact-note h4 {
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-section .contact-note p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.cta-section .section-title::after {
    background: rgba(255, 255, 255, 0.3);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.05rem;
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.cta-feature:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 124, 89, 0.2);
}

.cta-feature i {
    color: #4a7c59;
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-feature span {
    font-size: 1rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 600px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.3);
}

.cta-section .btn-secondary {
    background: #ffffff;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.cta-section .btn-secondary:hover {
    background: #4a7c59;
    color: #ffffff;
    border-color: #4a7c59;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-chip {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .principles-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tuition-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tier-card.featured {
        transform: none;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    

    
    .founder-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-buttons-centered {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-featured {
        margin: 20px 0;
    }
    
    .featured-link {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .featured-text {
        align-items: center;
    }
    
    .featured-label {
        font-size: 1.6rem;
    }
    
    .featured-in {
        font-size: 1.1rem;
    }
    
    .featured-logo {
        height: 50px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-content .section-title {
        font-size: 2.5rem;
    }
    
    .cta-content .section-text {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .contact-left {
        text-align: center;
    }
    
    .contact-right {
        text-align: center;
    }
    
    .contact-left .contact-subtitle {
        text-align: center;
    }
    
    .contact-left .contact-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 20px;
    }
    
    .contact-subtitle {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .early-bird-banner {
        margin-top: 24px;
    }
    
    .early-bird-content {
        padding: 16px 20px;
        gap: 16px;
    }
    
    .early-bird-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .early-bird-main {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .early-bird-banner {
        margin-top: 20px;
    }
    
    .early-bird-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px 16px;
    }
    
    .early-bird-text {
        align-items: center;
    }
    
    .early-bird-main {
        font-size: 0.95rem;
    }
    
    .early-bird-deadline {
        font-size: 0.85rem;
    }
}
    
    .principle-preview-item {
        padding: 20px 12px;
    }
    
    .principle-preview-item img {
        width: 50px;
        height: 50px;
    }
    
    .highlight-card {
        padding: 24px 16px;
    }
    
    .tier-card {
        padding: 24px 16px;
    }
    
    .testimonial {
        padding: 32px 16px;
    }
    
    .founder-image img {
        max-width: 100%;
    }
    
    .cta-section .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        margin-top: 40px;
    }
    
    .cta-content .section-title {
        font-size: 2rem;
    }
    
    .cta-content .section-text {
        font-size: 1rem;
    }
    
    .contact-content {
        gap: 32px;
    }
    
    .contact-left {
        text-align: center;
    }
    
    .contact-right {
        text-align: left;
    }
    
    .contact-left .contact-subtitle {
        text-align: center;
    }
    
    .contact-left .contact-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-subtitle {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-feature {
        padding: 24px 20px;
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .principles-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    // ... existing code ...
    
    .principles-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    // ... existing code ...
}

@media (max-width: 480px) {
    // ... existing code ...
    
    .principles-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .highlight-card {
        padding: 24px 16px;
    }
    
    // ... existing code ...
}

/* Large screen footer button layout */
@media (min-width: 769px) {
    .footer-bottom .social-links {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-top: 24px;
        justify-content: center;
    }
    
    .footer-bottom .social-links a {
        width: auto;
        min-width: 180px;
        justify-content: center;
    }
}

/* HIGH PRIORITY MOBILE NAVIGATION OVERRIDES */
/* These rules must override all conflicting styles */
/* Clean Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Hide desktop navigation menu on mobile */
    .navbar .nav-menu {
        position: fixed !important;
        right: -100% !important;
        top: 0 !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        width: 100% !important;
        text-align: center !important;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        -webkit-transition: 0.4s cubic-bezier(0.4, 0.2, 1) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
        padding: 0 !important;
        z-index: 1001 !important;
        border-bottom: 1px solid rgba(74, 124, 89, 0.1) !important;
        height: 100vh !important;
        overflow-y: auto !important;
        flex: none !important;
        margin: 0 !important;
        transform: translateX(100%) !important;
        -webkit-transform: translateX(100%) !important;
    }
    
    /* Ensure dropdown triggers work normally on mobile */
    .navbar .nav-item-dropdown .dropdown-trigger {
        pointer-events: auto;
    }
    
    /* Hide dropdown arrows and submenus for About Us and Programs on mobile */
    .nav-item-dropdown .dropdown-arrow {
        display: none !important;
    }
    
    .nav-item-dropdown .submenu {
        display: none !important;
    }
    
    /* Make About Us and Programs appear as regular links on mobile */
    .nav-item-dropdown > a {
        pointer-events: auto !important;
    }
    
    .nav-item-dropdown > a:hover {
        background: rgba(74, 124, 89, 0.01) !important;
        color: #2d3748 !important;
    }
    
    .nav-item-dropdown > a:active {
        background: rgba(74, 124, 89, 0.08) !important;
        transition: background 0.1s ease !important;
    }
    
    /* Override all active submenu states on mobile */
    .nav-item-dropdown.active .submenu,
    .navbar .nav-menu .nav-item-dropdown.active .submenu,
    .navbar .nav-item-dropdown.active:hover .submenu {
        display: none !important;
    }
    
    /* Show mobile navigation when active */
    .navbar .nav-menu.active {
        right: 0 !important;
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
        padding-top: 112px !important;
        top: 0 !important;
    }
    
    /* Show hamburger on mobile */
    .navbar .hamburger {
        display: flex;
        z-index: 1001;
        padding: 8px;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 40px;
    }
    
    /* Hide desktop CTA button on mobile */
    .navbar .nav-cta {
        display: none;
    }
}

/* Deficit Grid Styles */
.deficit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.deficit-item {
    background: var(--color-light-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.deficit-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.deficit-item ul {
    list-style: none;
    padding: 0;
}

.deficit-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border-light);
    position: relative;
    padding-left: 1.5rem;
}

.deficit-item li:before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.deficit-item li:last-child {
    border-bottom: none;
}

/* Milestones Grid Styles */
.milestones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.milestone-category {
    background: var(--color-light-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.milestone-category h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.milestone-category ul {
    list-style: none;
    padding: 0;
}

.milestone-category li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
    line-height: 1.6;
}

.milestone-category li:last-child {
    border-bottom: none;
}

.milestone-category strong {
    color: var(--color-primary);
}

/* Responsive adjustments for new grids */
@media (max-width: 768px) {
    .deficit-grid,
    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .deficit-item,
    .milestone-category {
        padding: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }
    
    .section .container {
        padding: 0 1rem;
    }
}

/* Desktop hover behavior - ensure it works properly */
@media (min-width: 1025px) {
    .navbar .nav-item-dropdown .dropdown-trigger {
        pointer-events: auto;
    }
    
    .navbar .nav-item-dropdown .submenu {
        pointer-events: none;
    }
    
    .navbar .nav-item-dropdown:hover .submenu {
        pointer-events: auto;
    }
    
    /* Ensure desktop hover behavior is not interfered with */
    .nav-item-dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile dropdown improvements */
@media (max-width: 768px) {
    .nav-item-dropdown .submenu {
        position: static !important;
        display: none !important;
        background: #ffffff !important;
        border: 1px solid rgba(74, 124, 89, 0.2) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        margin: 8px 0 !important;
        padding: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: 100% !important;
        left: auto !important;
        top: auto !important;
        border-radius: 8px !important;
        z-index: 1002 !important;
        overflow: hidden !important;
    }
    
    .nav-item-dropdown.active .submenu {
        display: block !important;
        position: relative !important;
        z-index: 1002 !important;
    }
    
    /* Ensure mobile submenu items are properly styled */
    .nav-item-dropdown .submenu a {
        padding: 14px 20px 14px 40px !important;
        color: #4a5568 !important;
        background: #ffffff !important;
        border: none !important;
        margin: 0 !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        transition: all 0.2s ease !important;
        z-index: 1003 !important;
        border-bottom: 1px solid rgba(74, 124, 89, 0.1) !important;
    }
    
    .nav-item-dropdown .submenu a:last-child {
        border-bottom: none !important;
    }
    
    .nav-item-dropdown .submenu a:hover {
        background: rgba(74, 124, 89, 0.08) !important;
        color: #4a7c59 !important;
        transform: translateX(4px) !important;
    }
    
    /* Ensure menu items underneath open dropdowns are unclickable */
    .nav-item-dropdown.active + li,
    .nav-item-dropdown.active ~ li {
        position: relative !important;
        z-index: 1001 !important;
        pointer-events: none !important;
        opacity: 0.6 !important;
    }
    
    /* Re-enable pointer events for the active dropdown and its submenu */
    .nav-item-dropdown.active,
    .nav-item-dropdown.active .submenu,
    .nav-item-dropdown.active .submenu * {
        pointer-events: auto !important;
    }
}

/* Override any conflicting styles with maximum specificity */
@media (max-width: 768px) {
    .navbar .nav-menu .nav-item-dropdown .submenu {
        background: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        z-index: 1002 !important;
    }
    
    .navbar .nav-menu .nav-item-dropdown.active .submenu {
        display: block !important;
    }
}
