/* General Styles */

h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
}

:root {
    --primary: #a6f509;
    --primary-dark: #8ccf05;
    --secondary: #6c3f18;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.15);
    --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.25);
    --radius: 16px;
}

/* SEO & Accessibility Utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    background-color: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
}

.nav-container {
    max-width: auto; 
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Logo Section */
.logo {
    flex-shrink: 0;
}
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo img {
    height: 45px; 
    width: auto;
    object-fit: contain;
}

.logo-link { gap: 0.5rem; }

.site-title {
    color: #ecf0f1;
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 0.5rem;
    letter-spacing: 2px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
   
}

.nav-menu.active{background-color:lightgrey;}

.nav-link {
    color: #6c3f18;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #7ab10d;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: navy;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section for Index Page */
.hero-modern {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-lead-card {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 3rem;
    text-align: center;
    color: #ffffff;
}

.hero-lead-card h1 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.highlight {
    color: #a6f509;
}

 .hero-workflow-carousel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(5, 22, 122, 0.6);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    z-index: 10;
    display: flex;
    align-items: center;
}
.carousel-mask {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-carousel 60s linear infinite;
 }
  .carousel-item {
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
 }   
@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-workflow-title {
    position: relative;
    bottom: auto;
    left: auto;
    color: #a6f509;
    padding: 0 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 15;
    white-space: nowrap;
    backdrop-filter: none;
    flex-shrink: 0;
}

.thrive-header-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
}

.thrive-header .thrive-header-logo {
    margin-left: auto;
    margin-right: auto;
}

/* New Thrive Ecosystem Grid Layout */
.thrive-ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

@media (min-width: 992px) {
    .thrive-ecosystem-grid {
        grid-template-columns: 1fr 1.4fr 1fr; 
        grid-template-rows: repeat(2, 300px); 
        height: 620px;
    }
    
    .tile-nomad { grid-column: 1; grid-row: 1; }
    .tile-eco { grid-column: 1; grid-row: 2; }
    .tile-iwd { grid-column: 2; grid-row: 1 / span 2; }
    .tile-dms { grid-column: 3; grid-row: 1; }
    .tile-ev { grid-column: 3; grid-row: 2; }
}

.thrive-tile {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 300px; 
}

@media (min-width: 992px) {
    .thrive-tile { height: 100%; } 
}

.thrive-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.thrive-tile:hover img {
    transform: scale(1.1);
}

.tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 3, 14, 0.9) 0%, rgba(109, 116, 223, 0.6) 40%, rgba(5, 14, 97, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    transition: all 0.3s ease;
}

.tile-overlay h4 {
    color: #a6f509;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.tile-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f0f0f0;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Nested Product Card Styles */
.thrive-product-card {
    display: none; 
    gap: 15px;
    align-items: flex-start;
    padding: 10px 0 15px 0;
    animation: fadeIn 0.5s;
}

.thrive-accordion-content li.active .thrive-product-card {
    display: flex;
}

.thrive-product-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.product-card-content p {
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem 0;
}

/* Savings Calculator Styles */
.savings-calculator-section {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
}

.calculator-container {
    max-width: 600px;
    margin: 2rem auto 0;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
    border-top: 4px solid navy;
}

.savings-result {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #6c3f18;
    font-weight: bold;
    min-height: 1.5em;
}

.calculator-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Calculator Accordion */
.calculator-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.calculator-accordion summary::-webkit-details-marker {
    display: none;
}

.calculator-accordion summary h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.calculator-accordion[open] .toggle-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    font-weight: bold;
}

.calculator-accordion[open] .calculator-container,
.calculator-accordion[open] .solutions-grid {
    animation: fadeInUp 0.5s ease-out;
}

/* Impact Highlights Section */
.impact-highlights {
    background: linear-gradient(135deg, #f6f7f8 10%, #f8feff 100%);
    color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
    font-family: inherit; 
}

.impact-highlights h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.impact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: linear-gradient(135deg, #a6f509 10%, #131a01 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    font-family: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.impact-card:hover {
    transform: scale(1.05) translateY(-5px) !important; /* !important to override the animation state */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.impact-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: inherit;
}

.impact-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: inherit;
}

/* Hover Effect for Impact and Metric Cards */
.impact-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease, 
                filter 0.3s ease;
    cursor: pointer;
}

.impact-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
     box-shadow: 0 15px 30px rgba(166, 245, 9, 0.3);   
    filter: brightness(1.1);
}
 
.impact-card:hover h3 {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid navy;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: bold;
    color: #6c3f18;
}

/* Solutions Section */
.solutions-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.solutions-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.solutions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.solution-card {
    background-color: #f8f9fa;
    border-top: 4px solid navy;
    border-radius: 12px;
    padding: 1.5rem;
}

.solution-card h3 {
    color: #6c3f18;
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: #555;
    margin-bottom: 0.75rem;
}

.solution-steps {
    margin-left: 1.2rem;
    color: #555;
}

.solution-ctas {
    margin-top: 1rem;
}

/* Solutions Section - Slide Effect & Hover Reveal */
.solutions-section.dynamic-reveal {
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
    opacity: 1 !important;
    padding: 4rem 2rem !important;
}

.solutions-section .solution-card {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.solutions-section.in-view .solution-card {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Entry */
.solutions-section.in-view .solution-card:nth-child(1) { transition-delay: 0.1s; }
.solutions-section.in-view .solution-card:nth-child(2) { transition-delay: 0.3s; }
.solutions-section.in-view .solution-card:nth-child(3) { transition-delay: 0.5s; }
.solutions-section.in-view .solution-card:nth-child(4) { transition-delay: 0.7s; }

/* Hover Reveal Content */
.solution-card p,
.solution-card ul,
.solution-card .solution-ctas {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: all 0.5s ease;
}

.solutions-section .solution-card:hover p,
.solutions-section .solution-card:hover ul,
.solutions-section .solution-card:hover .solution-ctas {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 1rem;
}

.solutions-section .solution-card:hover ul {
    padding-left: 1.2rem;
}

.solutions-section .solution-card:hover {
    transform: translateY(-10px);
}


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

.cta-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) ;
    text-decoration: none;
    margin: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #333;
    border: none;
 }

.cta-button.primary:hover {
    background-color: #a6f509;
    transform: scale(1.05);
}

.nav-cta-buy {
    animation: pulse-cta 1.0s infinite ease-in-out;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-cta-buy span {
    font-size: 0.7em;
}

@keyframes pulse-cta {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(166, 245, 9, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

.cta-button.secondary {
    background-color: navy;
    color: white;
}

.cta-button.secondary:hover {
    background-color: navy;
    transform: scale(1.05);
}

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

/* Utility Class for JS Scroll Animation */
.animate-on-scroll {
    opacity: 1;
}

/* Dynamic Reveal (Hide/Show on Scroll) */
.dynamic-reveal {
    opacity: 0.6;
    transform: scale(0.98);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.dynamic-reveal.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Floating Pop-ups */
.floating-popup {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideIn 0.5s ease-out;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-popup:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-popup .popup-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.popup-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    overflow: visible;
}

.whatsapp-popup {
    right: 20px;
    background-color: #30f509;
}

.whatsapp-popup .popup-svg {
    fill: #FFFFFF;
}

.call-popup {
    right: 90px;
    background-color: #ffffff;
}

.call-popup .popup-svg {
    fill: #30f509;
}

/* Newsletter Popup */
.newsletter-icon-popup {
    left: 20px;
    right: auto;
    background-color: #ffffff;
}

.newsletter-icon-popup .popup-svg {
    fill: #30f509;
}

.newsletter-popup-modal {
    display: none; 
    position: fixed;
    z-index: 9999; 
    left: 20px;
    bottom: 90px;
    top: auto;
    width:320px;
    height: auto;
    overflow: visible;
    background-color: transparent;
    align-items: flex-start;
    justify-content: flex-start;
    animation: slideIn 0.3s ease-out;
}

.newsletter-popup-modal[style*="display: flex"] {
    display: flex !important;
}

.newsletter-popup-content {
    background-color: #fefefe;
    margin: 0;
    padding: 1,5rem;
    border: 1px solid #888;
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-newsletter-popup {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-newsletter-popup:hover,
.close-newsletter-popup:focus {
    color: #333;
    text-decoration: none;
}

.newsletter-popup-content h3 {
    margin-top: 0;
    color: #2c3e50;
}

.newsletter-popup-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

#newsletterForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#newsletterForm input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* Footer */
.footer{
    background-color: navy;
    color: #ecf0f1;
    padding: 3rem 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: whitesmoke;
}

.address-line {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pin {
    width: 16px;
    height: 16px;
    fill: whitesmoke;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.contact-list li {
    margin: 0.25rem 0;
}

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

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

.footer-section a {
    color: whitesmoke;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a6f509;
}

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

.social-links a {
    display: inline-block;
}

.social-links a svg {
    width: 28px;
    height: 28px;
    fill: whitesmoke;
    display: block;
}

.social-links a:hover svg {
    fill: #a6f509;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    padding-top: 2rem;
}

.footer-bottom a {
    color: whitesmoke;
}

.footer-bottom a:hover {
    color: #a6f509;
}

.certified-by-title {
    margin-top: 1.5rem;
}

.certifications {
    display: flex;
    gap: 15px;
    align-items: center;
}

.certifications img {
    height: 40px;
    width: auto;
    background: white;
    padding: 2px;
    border-radius: 4px;
    object-fit: contain;
}
/* Removed legacy footer communications block styles */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        gap: 1rem;
        padding: 1rem 1rem 2rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-lead-card h1 {
        font-size: 1.8rem;
    }

    .slide {
        padding: 1.5rem 1rem;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-button {
        width: 100%;
    }

    .impact-highlights h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }

    .solutions-grid,
    .impact-grid,
    .testimonials-container,
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-lead-card h1 {
        font-size: 1.5rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

/* Additional Pages Styles */

/* Hero Subpage */
.hero-subpage {
    background: linear-gradient(135deg, #a6f509 0%, #6c3f18 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-subpage h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.hero-subpage p {
    font-size: 1.2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Section Navigation */
.about-nav {
    background-color: #f8f9fa;
    padding: 0;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
    top: 0;
    height: auto;
}

.about-nav-container {
    max-width: auto;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-tab-link {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.about-tab-link:hover,
.about-tab-link.active {
    color: #a6f509;
    border-bottom-color: #a6f509;
}

/* Section Container */
.section-container {
    max-width: auto;
    margin:  auto;
    padding: 0 2rem;
}

/* About Section */
/*  WORK FLOW COLOR & FONT INHERITANCE*/
.seamless-workflow {
    padding: 60px 5%;
    font-family: inherit;
    background-color: var(--bg-color, transparent); 
}

.workflow-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: var(--primary-color, #333); 
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-color, #555);
    font-size: 1rem;
}

/* --- 2. SEAMLESS SIDE-BY-SIDE TRACK --- */
.seamless-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
}

.seamless-track::-webkit-scrollbar {
    display: none;
}

/* ANIMATED CARDS */
.seamless-card {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    opacity: 0; 
    transform: translateY(30px);
    transition: transform 0.4s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    height: 400px;
}

.seamless-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effect */
.seamless-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color, #7ab10d);
}

.img-box {
    height: 100%;
    background: #eee; 
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seamless-card:hover .img-box img {
    transform: scale(1.1);
}

.text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    z-index: 2;
}

.num {
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
    background: var(--primary-color, #6c3f18);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.text-box h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.text-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* --- 4. RESPONSIVE GRID (TABLET & DESKTOP) --- */
@media (min-width: 768px) {
    .seamless-track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
        overflow: visible;
        max-width: 1300px;
        margin: 0 auto;
    }

    .seamless-card {
        flex: unset; 
    }
}
.about-section {
    padding: 4rem 2rem;
    background-color: white;
}

.about-section.alternate-bg {
    background-color: #f8f9fa;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    animation: fadeInDown 1s ease-out;
}

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

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mvv-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.mvv-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.mvv-item p {
    color: #555;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

.content-block {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #a6f509;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    color: #6c3f18;
    margin-bottom: 1rem;
}

/* About page segmented story blocks */
#our-story .content-grid {
     grid-template-columns: 1fr;
}
#our-story .content-block {
     margin-bottom: 2rem;
     border-left: 6px solid navy;
     background-color: #f4f8e8;
}
#our-story .content-block h3 {
     font-size: 1.3rem;
     color: #6c3f18;
     margin-bottom: 0.5rem;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.approach-card {
    background: linear-gradient(135deg, #a6f509 20%, #688317 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.approach-narrative {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* Team Section  */
.about-section.revealed .team-member {
    opacity: 1;
    transform: translateY(0);
}

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

.team-member {
    background-color: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border-top: 4px solid navy;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(30px);
}

.team-member h3 {
    color: #6c3f18;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: inherit;
}

.team-member p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: inherit;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.cta-link {
    color: #6c3f18;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #6c3f18;
}

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

/* Responsive Grid adjustment for Team */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

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

/* Partners Carousel */
    .partners-carousel { 
        overflow: hidden; 
        position: relative; 
        background: #fff; 
        border-radius: 8px; 
        padding: 1rem; 
    }
    
    .partners-track { 
        display: flex; 
        gap: 2rem; 
        align-items: center; 
        animation: scrollLogos 30s linear infinite; 
    }
    
    .partner-logo-item { 
        display: inline-flex; 
        align-items: center; 
        justify-content: center; 
        min-width: 140px; 
        max-width: 180px; 
    }
    
    .partner-logo-item img { 
        width: 100%; 
        height: 60px; 
        object-fit: contain; 
        filter: grayscale(20%); 
        opacity: .9; 
        transition: filter .2s, opacity .2s; 
    }
    
    
    .partner-logo-item:hover img { 
        filter: none; 
        opacity: 1; 
    }

    @keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    
    @media (max-width: 600px) { .partner-logo-item { min-width: 120px; } .partner-logo-item img { height: 48px; } }



.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.partners-cta {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

/*  Impact page Overview */
.impact-overview-section {
    padding: 4rem 2rem;
    background-color: white;
}

/* Impact Themes */
.impact-themes-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.theme-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid navy;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reports */
.reports-section {
    padding: 4rem 2rem;
    background-color: white;
}

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

.report-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #688317;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* News Section */
.news-section {
    padding: 4rem 2rem;
    background-color: white;
}

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

.news-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #688317;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.news-date {
    color: #888;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Press Section */
.press-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto-fit, 1fr));
    gap: 2rem;
}

.press-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid navy;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.press-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.media-kit-list,
.fact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.media-kit-list li,
.fact-list li {
    padding: 0.5rem 0;
    color: #555;
}

.media-kit-list li:before,
.fact-list li:before {
    content: "✓ ";
    color: #6c3f18;
    margin-right: 0.5rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Media Gallery Section */
.media-gallery-section {
    margin: 3rem 0;
}

.media-gallery-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.media-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #688317;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.media-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.media-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.media-card p {
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.media-type {
    display: inline-block;
    background-color: #a6f509;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.media-link {
    color: #6c3f18;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.media-link:hover {
    color: #6c3f18;
}

.media-card p,
.story-card p,
.news-card p {
    display: none;
}
.media-card:hover p,
.story-card:hover p,
.news-card:hover p {
    display: block;
}
/* Press Kit Section */
.press-kit-section {
    margin: 3rem 0;
}

.press-kit-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Recent Press Section */
.recent-press-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.recent-press-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.press-mention {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid navy;
    transition: all 0.3s ease;
}

.press-mention:hover {
    transform: translateX(5px);
}

.press-source {
    color: #6c3f18;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.press-title {
    color: #2c3e50;
    font-weight: 600;
    margin: 0.5rem 0 1rem 0;
}

/* News Section Responsive */
.news-section {
    padding: 4rem 2rem;
    background-color: white;
}

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

.news-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #688317;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.news-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.news-card p {
    flex-grow: 1;
    color: #555;
    margin-bottom: 1rem;
}

.news-card .cta-button {
    align-self: flex-start;
}

/* Stories Grid Responsive */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    background-color:#f8f9fa;
    padding: 2rem;;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid navy;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.story-card h3 {
    color: #6c3f18;
    margin-bottom: 1rem;
}

.story-card p {
    flex-grow: 1;
    color: #555;
    margin-bottom: 1rem;
}

.story-card .cta-button {
    align-self: flex-start;
}

/* Support Section */
.support-section {
    padding: 4rem 2rem;
    background-color: white;
}

.support-section h2 {
    animation: fadeInDown 1s ease-out;
}

/* FAQ Section & Entrance Animations */
.faq-section {
    max-width: 800px;
    margin: 4rem auto;
    font-family: inherit;
}

.faq-item {
    background-color: #f8f9fa;
    margin-bottom: 1.2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    overflow: hidden;
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Staggered delays for a sequential entry effect */
.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }

/* The trigger class added by JavaScript */
.faq-section.revealed .faq-item {
    opacity: 1;
    transform: translateX(0);
}

/* Summary & Interaction Styling */

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    color: #6c3f18;
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none; 
}

/* Custom indicator icon */
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #a6f509;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #2c3e50;
}

.faq-item[open] {
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #a6f509;
}

/* Hover State */
.faq-item:hover {
    background-color: #f1f3f5;
    border-color: #a6f509;
    transform: translateX(5px); 
}

.faq-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    animation: fadeInUp 0.4s ease-out;
}

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


/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.resource-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #a6f509;
    text-align: center;
}

/* Support Contact */
.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid navy;
    text-align: center;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
}


/* Support Form */
.support-form-container {
    background-color: #f8f9fa;
    padding:2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.support-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #a6f509;
    box-shadow: 0 0 5px rgba(167, 204, 64, 0.3);
}

/* categories on support form*/
.category-specific {
  display: none; 
}
#category-select {
  font-weight: bold;
}

/* Contact Section */
.contact-info-section {
    padding: 4rem 2rem;
    background-color: white;
}

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

.contact-info-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid navy;
    text-align: center;
}

/* Contact Routes */
.contact-routes-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.route-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid navy;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Social Section */
.social-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

.social-link {
    background-color: #a6f509;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #6c3f18;
}

/* Careers */
.careers-nav {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
}

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

.why-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid navy;
    text-align: center;
}

.career-culture {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Jobs */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.job-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid navy;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.job-type {
    color: #888;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

/* Application Form */
.application-form-container {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.large-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-nav-container,
    .filters-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .hero-subpage h1 {
        font-size: 2rem;
    }

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

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

    .integration-flow {
        flex-direction: column;
    }
}

/* Policy Pages Styles */
.policy-container {
    max-width: 800px;
    margin: 140px auto 60px; 
    padding: 0 20px;
    line-height: 1.6;
    text-align: left;
}

.policy-container h1,
.policy-container h2,
.policy-container h3 {
    text-align: center;
    color: #2c3e50;
}

.policy-container h1 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.policy-container h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-container h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-container ul {
    margin-bottom: 20px;
    padding-left: 40px;
    list-style-position: outside;
}

.policy-container li {
    margin-bottom: 10px;
}

.policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.policy-container th, 
.policy-container td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.policy-container th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

.policy-container td ul {
    margin: 0;
    padding-left: 20px;
}

/* Careers Page Specifics */
.fit-check-section {
    margin-top: 2rem;
}

.fit-check-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.question-block {
    margin-bottom: 1.5rem;
}

.question-label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.question-desc {
    margin-bottom: 0.5rem;
    color: #555;
}

.question-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.submission-actions {
    text-align: center;
    margin-top: 2rem;
}

.answer-error {
    color: #d9534f;
    display: none;
    margin-top: 10px;
}

.submission-details {
    display: none;
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    animation: fadeInUp 0.5s ease-out;
}

.cv-drop-zone {
    margin: 2rem auto;
    max-width: 400px;
    padding: 2rem;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.cv-drop-label {
    color: #777;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cv-file-input {
    display: block;
    margin: 0 auto;
}

.cv-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}

.submit-email-btn {
    margin-top: 1rem;
}

.email-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Buy Dropdown & Bulk Buy Modal */
.buy-dropdown { position: relative; display: inline-block; }
.buy-options { display: none; position: absolute; right: 0; background-color: #fff; min-width: 180px; box-shadow: 0 8px 16px rgba(0,0,0,0.2); z-index: 1000; border-radius: 8px; overflow: hidden; margin-top: 5px; }
.buy-options.show { display: block; }
.buy-option { color: #333; padding: 12px 16px; text-decoration: none; display: block; width: 100%; text-align: left; border: none; background: none; cursor: pointer; font-family: inherit; font-size: 1rem; transition: background 0.3s; }
.buy-option:hover { background-color: #f1f1f1; color: var(--primary-dark); }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); display: flex; justify-content: center; align-items: center; z-index: 2000; }
.modal-content { background-color: #fff; padding: 2rem; border-radius: 8px; width: 90%; max-width: 500px; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.close-modal { position: absolute; top: 10px; right: 20px; font-size: 28px; font-weight: bold; cursor: pointer; color: #aaa; }
.close-modal:hover { color: #a6f509; }
.discount-label { background-color: #e8f5e9; color: #2e7d32; padding: 10px; border-radius: 4px; margin: 15px 0; font-size: 0.9rem; border-left: 4px solid #2e7d32; }

#bulkBuyModal h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}
#bulkBuyModal .modal-intro {
    margin-bottom: 1.5rem;
    color: #666;
}
#bulkBuyModal .cta-button {
    width: 100%;
}
