
       :root {
            
    /* ======================================
                    COLORS
       ====================================== */
    --main-color: #1c1c28;
    --card-color:  #262841;
    --article-bg-color: #1c1c28;
    --founder-card-bg-color: #3b3470;
    --network-logo-bg-color: #e9eef1;
    /*text*/
    --text-color:#e9eef1;
    --bigtitle-color: #d186f0;
    --title-color:  #a99bf5;
    --date-color: #7dd3fc;
    --container-color: #262841;
    /*buttons*/
    --button-color: #262841;
    --button-hover-color: #181526;
    --button-text-color: #e9eef1;
    /*links*/
    --link-color: #262841;
    --link-a-color: #7dd3fc;
    --link-a-hover-color: #7c6bf0;
    /*details*/
    --divider-color: rgba(233,238,241,0.2);
    /*borders & shadows*/
    --border-color: rgba(255,255,255,0.08);
    --border-color-strong: rgba(255,255,255,0.15);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.3);
    /*nav*/
    --nav-bg: #1e1e30;
    --nav-text: #e9eef1;


    /* Variables for light mode */
body.light-mode {
    --main-color: #f8f9fc;
    --card-color: #ffffff;
    --article-bg-color:#f8f9fc;
    --founder-card-bg-color: #f0edff;
    --network-logo-bg-color: #e9eef1;
    /*text*/
    --text-color:#1e1b3a;
    --bigtitle-color: #6d28d9;
    --title-color:  #4338ca;
    --date-color: #0369a1;
    --container-color: #f0edff;
    /*buttons*/
    --button-color: #6d28d9;
    --button-hover-color: #5b21b6;
    --button-text-color: #ffffff;
    /*links*/
    --link-color: #1e1b3a;
    --link-a-color: #2563eb;
    --link-a-hover-color: #7c6bf0;
    /*details*/
    --divider-color: rgba(0,0,0,0.1);
    /*borders & shadows*/
    --border-color: rgba(0,0,0,0.08);
    --border-color-strong: rgba(0,0,0,0.12);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    /*nav*/
    --nav-bg: #ffffff;
    --nav-text: #1e1b3a;
}

/* Style du bouton theme toggle */
#themeToggle {
    background: none;
    border: 1px solid var(--border-color-strong);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

#themeToggle:hover {
    background: var(--border-color-strong);
    transform: scale(1.1);
}

body.light-mode #themeToggle {
    border-color: var(--border-color-strong);
}

body.light-mode #themeToggle:hover {
    background: #f0f0f0;
}

        }
        /* ======================================
            GLOBAL STYLES & RESET
           ====================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background: var(--main-color);
            color: var(--text-color);
            line-height: 1.4;
            overflow-x: hidden;
        }

        /* ======================================
           HEADER - NAVIGATION
           ====================================== */
    
           nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--nav-bg);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-card);
        }
        body.light-mode nav{
                background: var(--nav-bg);
            }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--nav-text);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--nav-text);
            font-weight: 400;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.8rem 1rem;
            display: block;
            transition: background 0.2s ease, color 0.2s ease;
            border-left: 1px solid var(--border-color);
        }

        .nav-links li:first-child a {
            border-left: none;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: var(--link-a-hover-color);
            color: #ffffff;
        }

        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* ======================================
           MAIN - HERO SECTION
           ====================================== */
/* Page sections (for body spa we use the first one system with a single page and for standalone we use display block) */


        /* Mode SPA (index.html) */
     body.spa-mode .page-section {
        display: none;
    }
    body.spa-mode .page-section.active {
        display: block;
    }

    /* Mode standalone (autres pages) */
    body.standalone-mode .page-section {
        display: block;
        margin-top: 60px;
    }

        .main-hero {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #000;
            margin-top: 0;
        }

        /* When no banner before hero */
        .main-hero.with-nav-margin {
            margin-top: 60px;
        }

        .hero-video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            pointer-events: none;
        }

        /* Video Text Overlay - FIXED TO SHOW ONLY 2 LINES */
        .video-text-overlay {
            position: absolute;
            bottom: 80px;
            left: 60px;
            color: white;
            text-align: left;
            z-index: 4;
            max-width: 500px;
        }

        .video-text-overlay h2 {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            white-space: nowrap;
        }

        .video-text-overlay .line1 {
            display: block;
            margin-bottom: 0.3em;
        }

        .video-text-overlay .line2 {
            display: block;
        }

        /* ======================================
           STICKY BANNER WITH ANIMATION
           ====================================== */
        .sticky-banner {
            text-align: center;
            margin: 0;
            padding: 0;
            background: #000;
            color: white;
            height: 41px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            z-index: 998;
            width: 100vw;
        }

        .sticky-banner h3 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
            font-style: italic;
            white-space: nowrap;
            animation: slideRight 20s linear infinite;
            line-height: 41px;
            height: 41px;
            display: block;
            padding-top: 3px;
        }

        @keyframes slideRight {
            0% { transform: translateX(-25%); }
            100% { transform: translateX(25%); }
        }

        /* ======================================
           APP BANNER SECTION
           ====================================== */
        .app-banner {
            background: linear-gradient(135deg, #7c6bf0 0%, #b24ce6 100%);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .app-banner-top {
            margin-top: 96px;
        }

        .app-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .app-banner-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .app-banner h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .app-banner p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .app-banner-btn {
            display: inline-block;
            background: #fff;
            color: #7c6bf0;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .app-banner-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: #f0f0f0;
        }

        /* ======================================
           IMPROVED MISSION SECTION - NEW DESIGN
           ====================================== */
        .mission-section-new {
            background: var(--main-color);
            padding: 7rem 0;
            width: 100%;
        }

        .mission-container-new {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        .mission-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .mission-label {
            display: inline-block;
            background: var(--card-color);
            color: var(--link-a-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .mission-intro h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--bigtitle-color);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .mission-subtitle {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.9;
        }

        .mission-features {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mission-feature {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: var(--card-color);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            box-shadow: var(--shadow-card);
        }

        .mission-feature:hover {
            transform: translateX(10px);
            border-left-color: var(--link-a-color);
            box-shadow: var(--shadow-md);
        }

        .feature-icon-wrapper {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7c6bf0 0%, #b24ce6 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .feature-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--bigtitle-color);
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color);
            opacity: 0.9;
        }

        /* ======================================
           SERVICES PAGE - NEW DESIGN
           ====================================== */
        .services-section-new {
            background: var(--main-color);
            padding: 7rem 0;
            width: 100%;
        }

        .services-container-new {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        .services-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-label {
            display: inline-block;
            background: var(--card-color);
            color: var(--link-a-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .services-intro h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--bigtitle-color);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .services-subtitle {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.9;
        }

        .services-features {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .service-feature {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: var(--card-color);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            box-shadow: var(--shadow-card);
        }

        .service-feature:hover {
            transform: translateX(10px);
            border-left-color: var(--link-a-color);
            box-shadow: var(--shadow-md);
        }

        /* ======================================
           ABOUT PAGE - NEW DESIGN
           ====================================== */
        .about-section-new {
            background: var(--main-color);
            padding: 7rem 0;
            width: 100%;
        }

        .about-container-new {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        .about-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-label {
            display: inline-block;
            background: var(--card-color);
            color: var(--link-a-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .about-intro h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--bigtitle-color);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .about-subtitle {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.9;
        }

        .about-description {
            background: var(--card-color);
            padding: 2.5rem;
            border-radius: 12px;
            margin-bottom: 4rem;
            border-left: 4px solid var(--link-a-color);
            box-shadow: var(--shadow-card);
        }

        .about-description p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-color);
        }

        /* ======================================
           CONTACT PAGE - NEW DESIGN
           ====================================== */
        .contact-section-new {
            background: var(--main-color);
            padding: 7rem 0;
            width: 100%;
        }

        .contact-container-new {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }

        .contact-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .contact-label {
            display: inline-block;
            background: var(--card-color);
            color: var(--link-a-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .contact-intro h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--bigtitle-color);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .contact-subtitle {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.9;
        }

        .contact-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-feature {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: var(--card-color);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            box-shadow: var(--shadow-card);
        }

        .contact-feature:hover {
            transform: translateX(10px);
            border-left-color: var(--link-a-color);
            box-shadow: var(--shadow-md);
        }

        .contact-feature .feature-content p {
            margin-bottom: 0.8rem;
        }

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

        .contact-form-wrapper h3 {
            text-align: center;
            font-size: 1.8rem;
            color: var(--bigtitle-color);
            margin-bottom: 2rem;
        }

        /* Old mission section (kept for other pages) */
        .mission-section {
            background: var(--main-color);
            padding: 5rem 0;
            width: 100%;
        }

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

        .mission-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .mission-header h2 {
            font-size: 2.2rem; /* SMALLER */
            font-weight: 700;
            color: var(--bigtitle-color);;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .mission-divider {
            width: 100px;
            height: 3px;
            background: var(--divider-color);
            margin: 0 auto 2rem;
        }

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

        .mission-card {
            background: var(--card-color);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
        }

        .mission-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .mission-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

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

        .mission-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color);
        }

        /* ======================================
           BLACK & WHITE CASSETTE TAPE STYLING
           ====================================== */
        .cassette-section {
            background: var(--main-color);
            width: 100%;
            padding: 3rem 0;
            margin: 0;
        }

        .cassette-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .cassette-player {
            background: var(--card-color);
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 0;
            border: 1px solid var(--border-color);
            position: relative;
        }
        body.light-mode .cassette-label{
                background: rgb(128, 124, 242);
            }
        .cassette-label {
            background: rgb(0, 0, 0);
            border-radius: 4px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .cassette-controls {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 0;
            margin-bottom: 0;
        }

        .cassette-button {
            padding: 10px 20px;
            background: white;
            color: #000;
            border: 1px solid var(--border-color-strong);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .cassette-button:hover {
            background: #000;
            color: white;
            border: 1px solid white;
        }

        .cassette-button.active {
            background: #000;
            color: white;
            border: 1px solid white;
        }

        .cassette-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .cassette-track {
            background: white;
            border-radius: 4px;
            padding: 1.2rem;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }

        .cassette-track:hover {
            background: #000;
            color: white;
        }

        .cassette-track:hover .track-info h3,
        .cassette-track:hover .track-info p {
            color: white;
        }

        .track-number {
            width: 24px;
            height: 24px;
            background: #000;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .track-info {
            flex: 1;
        }

        .track-info h3 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.2rem;
            color: #000;
        }

        .track-info p {
            font-size: 0.85rem;
            color: #000;
            margin: 0;
        }

        .track-category {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 3px 8px;
            border-radius: 12px;
            background: white;
            color: #000;
            border: 1px solid var(--border-color);
        }

        /* Category colors with brand outline */
        .blog-content .track-category {
            background: var(--link-a-hover-color);
            color: white;
            border: 2px solid var(--border-color-strong);
            box-shadow: none;
        }

        .projects-content .track-category {
            background: var(--link-a-hover-color);
            color: white;
            border: 2px solid var(--border-color-strong);
            box-shadow: none;
        }

        .talks-content .track-category {
            background: var(--link-a-hover-color);
            color: white;
            border: 2px solid var(--border-color-strong);
            box-shadow: none;
        }

        .cassette-track:hover .track-category {
            background: white;
            color: #000;
            border: 1px solid white;
            box-shadow: none;
        }

        .no-content-message {
            text-align: center;
            padding: 2rem;
            color: white;
            font-style: italic;
            display: none;
        }

        /* ======================================
           RESTORED SERVICES PAGE - MISSION STYLE DESIGN
           ====================================== */
        .services-section {
            background: var(--main-color);
            padding: 8rem 0 4rem 0; /* Added space before heading */
            width: 100%;
        }

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

        .services-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .services-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--bigtitle-color);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .services-divider {
            width: 100px;
            height: 3px;
            background: var(--divider-color);
            margin: 0 auto 2rem;
        }

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

        .service-card {
            background: var(--card-color);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

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

        .service-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color);
        }

        /* ======================================
           ABOUT PAGE STYLES
           ====================================== */
        .about-section {
            padding: 8rem 0 4rem 0; /* Added space before heading */
            background: var(--main-color);
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .about-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-header h2 {
            font-size: 2.2rem; /* SMALLER */
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--bigtitle-color);
            letter-spacing: -0.02em;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            text-align: justify;
        }

        /* IMPROVED FOUNDERS SECTION - 3 COLUMN LAYOUT */
        .founders-section h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--bigtitle-color);
        }

        .founders-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .founder-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: linear-gradient(135deg, var(--card-color) 0%, var(--founder-card-bg-color) 100%);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
            height: 100%;
        }

        .founder-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .founder-image {
            margin-bottom: 1.5rem;
            width: 140px;
            height: 140px;
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .founder-info {
            display: flex;
            flex-direction: column;
        }


        .founder-info .title {
           margin-top: auto;
        }
        .founder-info h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--bigtitle-color);
        }

        .founder-info p {
            margin-bottom: 0.5rem;
            color: var(--text-color);
            font-size: 0.95rem;
        }

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

        .founder-info .experience {
            margin-bottom: 0.3rem;
            color: var(--text-color);
            font-size: 0.9rem;
        }

        /* ======================================
           IMPROVED OUR NETWORK SECTION
           ====================================== */
           .partners-section {
            margin: 4rem 0;
            padding: 2rem 0;
        }

        .partners-section h2 {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--bigtitle-color);
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

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

        .partners-logo {
            background: transparent;
            border: none;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .partners-logo:hover {
            transform: translateY(-5px);
        }

        .partners-logo-image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 1rem;
            border-radius: 8px;
            background: var(--network-logo-bg-color);
            padding: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .network-section {
            margin: 4rem 0;
            padding: 2rem 0;
        }

        .network-section h2 {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--bigtitle-color);
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

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

        .network-logo {
            background: transparent;
            border: none;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .network-logo:hover {
            transform: translateY(-5px);
        }

        .network-logo-image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 1rem;
            border-radius: 8px;
            background: var(--network-logo-bg-color);
            padding: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .logo-placeholder {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: var(--title-color);
        }

        .logo-text {
            font-size: 0.9rem;
            line-height: 1.4;
            color: var(--text-color);
        }

        /* Responsive adjustments for network section */
        @media (max-width: 768px) {
            .network-logos {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .network-logo {
                padding: 1rem;
            }
            
            .network-logo-image {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .network-logos {
                grid-template-columns: 1fr;
            }
            
            .network-section h2 {
                font-size: 1.8rem;
            }
        }

         /* Responsive adjustments for partners section */
        @media (max-width: 768px) {
            .partners-logos {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .partners-logo {
                padding: 1rem;
            }

            .partners-logo-image {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .partners-logos {
                grid-template-columns: 1fr;
            }

            .partners-section h2 {
                font-size: 1.8rem;
            }
        }

        /* ======================================
           CONTACT PAGE - SMALLER HEADING
           ====================================== */
        .contact-section {
            padding: 8rem 0 4rem 0; /* Added space before heading */
            background: var(--main-color);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }

        .contact-header h2 {
            font-size: 2.2rem; /* SMALLER */
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--bigtitle-color);
            letter-spacing: -0.02em;
        }

        .contact-header p {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-categories {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
            padding: 0 1rem;
        }

        .contact-category {
            background: var(--card-color);
            padding: 2.5rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-card);
        }

        .contact-category h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(title-color);
            padding-bottom: 0.75rem;
            border-bottom:3px solid var(--divider-color);
        }

        .contact-category p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--text-color);
            margin-bottom: 1rem;
        }

        .contact-form-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--container-color);
            padding: 3rem;
            border: 1px solid var(--border-color-strong);
            border-radius: 8px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: flex;
            gap: 1rem;
        }

        .form-group {
            flex: 1;
        }

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color-strong);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
            border-radius: 4px;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--link-a-color);
        }

        .submit-btn {
            background: var(--button-color);
            color: var(--button-text-color);
            padding: 15px 30px;
            border: none;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 4px;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            background: var(--button-hover-color);
        }

        .form-status {
            margin-top: 1rem;
            padding: 12px;
            border-radius: 4px;
            display: none;
        }

        /* ======================================
           CONTENT PAGES - SMALLER HEADINGS WITH SPACING
           ====================================== */
        .content-page {
            padding: 8rem 0 4rem 0;
            background: var(--main-color);
        }

        .content-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }

        .content-header h2 {
            font-size: 2.2rem; /* SMALLER */
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--bigtitle-color);
            letter-spacing: -0.02em;
            margin-top: 2rem; /* ADDED SPACING */
        }

        .content-header p {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .content-article {
            background: var(--card-color);
            border-radius: 8px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            margin-top: 1.5rem; /* ADDED SPACING */
        }

        .content-article:hover {
            background: var(--link-a-hover-color);
            color: white;
            transform: translateY(-5px);
        }

        .content-article:hover h3,
        .content-article:hover p {
            color: white;
        }

        .content-article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--bigtitle-color);
            margin-top: 1rem; /* ADDED SPACING */
        }

        .content-article p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color);
            margin-bottom: 1rem;
        }

        /* ======================================
           DUCK1 TESTING PAGE
           ====================================== */
        .duck1-page {
            padding: 8rem 0 4rem 0;
            background: var(--main-color);
        }

        .duck1-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }

        .duck1-title {
            font-size: 2.2rem; /* SMALLER */
            font-weight: 700;
            color: var(--bigtitle-color);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-top: 2rem; /* ADDED SPACING */
        }

        .duck1-date {
            font-size: 1rem;
            color: var(--date-color);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .duck1-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .duck1-article {
            background: var(--article-bg-color);
            padding: 2.5rem 0;
        }

        .duck1-article p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .duck1-article strong {
            font-weight: 600;
            color: var(--text-color);
        }

        .duck1-section-heading {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--bigtitle-color);
            margin: 2rem 0 1rem 0;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-top: 2.5rem; /* ADDED SPACING */
        }

        .duck1-article ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .duck1-article li {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: 0.8rem;
        }

        /* LinkedIn Post Styles for Duck1 Page */
        .linkedin-embed {
            margin: 2.5rem 0;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .linkedin-embed iframe {
            width: 100%;
            border: none;
            min-height: 400px;
        }
        body.light-mode .linkedin-fallback {
            background: #afcad5;
        }
        body.light-mode .linkedin-fallback p {
            color: #f5f7f9;
        }
        .linkedin-fallback {
            padding: 2rem;
            text-align: center;
            background: #181526;
            border-radius: 8px;
            margin: 2.5rem 0;
        }

        .linkedin-fallback a {
            color: #0077b5;
            text-decoration: none;
            font-weight: 600;
        }

        .linkedin-fallback a:hover {
            text-decoration: underline;
        }

        /* ======================================
           MOBYGRATIS PAGE - SMALLER HEADINGS WITH SPACING
           ====================================== */
        .mobygratis-page {
            padding: 8rem 0 4rem 0;
            background: var(--main-color);
        }

        .mobygratis-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 1rem;
            max-width: 900px; /* ADDED TO MATCH CONTENT WIDTH */
            margin-left: auto; /* ADDED TO MATCH CONTENT WIDTH */
            margin-right: auto; /* ADDED TO MATCH CONTENT WIDTH */
        }

        .mobygratis-title {
            font-size: 2.2rem; /* SMALLER */
            font-weight: 700;
            color:var(--bigtitle-color);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-top: 2rem; /* ADDED SPACING */
            text-align: left; /* ADDED TO ALIGN WITH TEXT */
        }

        .mobygratis-date {
            font-size: 1rem;
            color: var(--date-color);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .mobygratis-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .mobygratis-article {
            background: var(--article-bg-color);
            padding: 2.5rem 0;
        }

        .mobygratis-article p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .mobygratis-article strong {
            font-weight: 600;
            color: var(--text-color);
        }

        .section-heading {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--title-color);
            margin: 2rem 0 1rem 0;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-top: 2.5rem; /* ADDED SPACING */
        }

        .small-caps-heading {
            font-variant: small-caps;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--title-color);
            margin: 2rem 0 1rem 0;
            letter-spacing: 0.05em;
            margin-top: 2rem; /* ADDED SPACING */
        }

        .mobygratis-article ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .mobygratis-article li {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: 0.8rem;
        }

        .mobygratis-link {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--link-color);
            margin-top: 2rem;
            font-style: italic;
        }

        .mobygratis-link a {
            color: var(--link-a-color);
            text-decoration: underline;
        }

        .mobygratis-link a:hover {
            color: var(--link-a-hover-color);
        }

        /* ======================================
           FOOTER - WHITE BACKGROUND
           ====================================== */
        .white-footer {
            background-color: var(--main-color);
            color: var(--text-color);
            padding: 3rem 0 1.5rem 0;
            margin-top: 4rem; /* Added space before footer */
            border-top: 1px solid var(--border-color);
            text-align: center;
            width: 100%;
        }

        .white-footer * {
            color: inherit;
        }

        .white-footer h3 {
            color: var(--title-color);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .white-footer p {
            color: var(--text-color);
            margin-bottom: 0.5rem;
            font-size: 1rem;
            line-height: 1.5;
        }

        .white-footer strong {
            color: var(--text-color);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-about {
            max-width: 400px;
        }

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

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            color: var(--link-a-color);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: 1px solid var(--border-color);
        }

        .social-links a:hover {
            background: var(--link-a-hover-color);
            color: var(--link-color);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            margin-top: 2rem;
            padding-top: 1rem;
            text-align: center;
            width: 100%;
        }

        .footer-bottom p {
            color: var(--text-color);
            font-size: 0.9rem;
        }

        /* ======================================
           BACK TO HOME BUTTON - IMPROVED Z-INDEX
           ====================================== */
        .back-to-home {
            position: fixed;
            top: 120px;
            left: 20px;
            background: var(--button-color);
            color: var(--button-text-color);
            border: none;
            padding: 12px 18px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: bold;
            transition: all 0.3s ease;
            z-index: 1002; /* HIGHER Z-INDEX TO APPEAR ABOVE MENU */
        }

        .back-to-home:hover {
            background: var(--button-hover-color);
            transform: translateX(-3px);
        }

        /* ======================================
           RESPONSIVE DESIGN
           ====================================== */
        @media (max-width: 1024px) {
            .app-banner h2 {
                font-size: 2rem;
            }

            .app-banner p {
                font-size: 1.1rem;
            }

            .mission-intro h2,
            .services-intro h2,
            .about-intro h2,
            .contact-intro h2 {
                font-size: 2.4rem;
            }

            .mission-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-categories {
                grid-template-columns: 1fr;
            }
            
            .nav-links a {
                padding: 0.8rem 0.8rem;
                font-size: 0.85rem;
            }

            .video-text-overlay {
                left: 40px;
                bottom: 60px;
                max-width: 450px;
            }

            .video-text-overlay h2 {
                font-size: 2.8rem;
                white-space: nowrap;
            }

            .mobygratis-title {
                font-size: 2rem;
            }
            
            .section-heading {
                font-size: 1.6rem;
            }
            
            /* Founders section responsive */
            .founders-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            /* Mobile Navigation */
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--nav-bg);
                flex-direction: column;
                border-top: 1px solid var(--border-color);
                border-bottom: 1px solid var(--border-color);
                z-index: 1001; /* HIGHER THAN BACK BUTTON */
            }

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

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                border-left: none;
                border-bottom: 1px solid var(--border-color);
                padding: 1rem;
                text-align: center;
            }

            .nav-links li:last-child a {
                border-bottom: none;
            }

            /* Video Text Overlay */
            .video-text-overlay {
                left: 30px;
                bottom: 50px;
                max-width: 380px;
            }

            .video-text-overlay h2 {
                font-size: 2.3rem;
                white-space: nowrap;
            }

            /* App Banner */
            .app-banner {
                padding: 3rem 1.5rem;
            }

            .app-banner h2 {
                font-size: 1.8rem;
            }

            .app-banner p {
                font-size: 1rem;
            }

            .app-banner-btn {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }

            /* New Mission Section */
            .mission-section-new,
            .services-section-new,
            .about-section-new,
            .contact-section-new {
                padding: 4rem 0;
            }

            .mission-intro h2,
            .services-intro h2,
            .about-intro h2,
            .contact-intro h2 {
                font-size: 2rem;
            }

            .mission-subtitle,
            .services-subtitle,
            .about-subtitle,
            .contact-subtitle {
                font-size: 1.1rem;
            }

            .mission-feature,
            .service-feature,
            .contact-feature {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

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

            .feature-icon-wrapper {
                width: 50px;
                height: 50px;
            }

            .feature-icon-wrapper svg {
                width: 24px;
                height: 24px;
            }

            /* Mission Section */
            .mission-section {
                padding: 4rem 0;
            }

            .mission-container {
                padding: 0 1.5rem;
            }

            .mission-header h2 {
                font-size: 2rem;
            }

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

            .mission-card {
                padding: 2rem 1.5rem;
            }

            /* Services Section */
            .services-grid {
                grid-template-columns: 1fr;
            }

            /* Cassette Player */
            .cassette-section {
                padding: 2rem 0;
            }

            .cassette-player {
                padding: 1.5rem;
            }

            .cassette-label {
                padding: 1rem;
            }

            .cassette-controls {
                gap: 1rem;
            }

            .cassette-button {
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            .cassette-track {
                padding: 1rem;
            }

            .track-number {
                width: 22px;
                height: 22px;
                font-size: 0.75rem;
                margin-right: 0.8rem;
            }

            .track-info h3 {
                font-size: 0.95rem;
            }

            .track-info p {
                font-size: 0.8rem;
            }

            /* Content Sections */
            .content-page,
            .services-section,
            .about-section,
            .contact-section,
            .mobygratis-page,
            .duck1-page {
                padding: 6rem 0 3rem 0;
            }

            .content-header h2,
            .services-header h2,
            .about-header h2,
            .contact-header h2,
            .mobygratis-title,
            .duck1-title {
                font-size: 2rem;
            }

            .content-article,
            .service-card,
            .contact-category {
                padding: 2rem;
            }

            /* About Page - Mobile Adjustments */
            .founders-section {
                padding: 2rem 1rem;
            }

            .founder-card {
                padding: 1.5rem;
            }

            .founder-image {
                width: 120px;
                height: 120px;
            }

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

            /* Founders section responsive */
            .founders-grid {
                grid-template-columns: 1fr;
            }

            /* Contact Form */
            .form-row {
                flex-direction: column;
                gap: 1.5rem;
            }

            .contact-form-container {
                margin: 0 1rem;
                padding: 2rem;
            }

            /* Back button */
            .back-to-home {
                left: 10px;
                top: 100px;
                padding: 10px 15px;
                font-size: 0.8rem;
                z-index: 999; /* MAINTAIN HIGH Z-INDEX */
            }

            /* Mobygratis Page */
            .mobygratis-article {
                padding: 1.5rem 0;
            }
            
            .section-heading {
                font-size: 1.5rem;
            }

            /* LinkedIn Embed Responsive */
            .linkedin-embed iframe {
                min-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 0.5rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            /* Video Text Overlay */
            .video-text-overlay {
                left: 20px;
                bottom: 40px;
                max-width: 280px;
            }

            .video-text-overlay h2 {
                font-size: 1.8rem;
                white-space: nowrap;
            }

            /* App Banner */
            .app-banner {
                padding: 2.5rem 1rem;
            }

            .app-banner h2 {
                font-size: 1.5rem;
            }

            .app-banner p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .app-banner-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.95rem;
            }

            /* New Mission Section */
            .mission-section-new,
            .services-section-new,
            .about-section-new,
            .contact-section-new {
                padding: 3rem 0;
            }

            .mission-container-new,
            .services-container-new,
            .about-container-new,
            .contact-container-new {
                padding: 0 1rem;
            }

            .mission-intro h2,
            .services-intro h2,
            .about-intro h2,
            .contact-intro h2 {
                font-size: 1.7rem;
            }

            .mission-subtitle,
            .services-subtitle,
            .about-subtitle,
            .contact-subtitle {
                font-size: 1rem;
            }

            .mission-label,
            .services-label,
            .about-label,
            .contact-label {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }

            .mission-feature,
            .service-feature,
            .contact-feature {
                padding: 1.5rem;
            }

            .feature-content h3 {
                font-size: 1.2rem;
            }

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

            /* Mission Section */
            .mission-section {
                padding: 3rem 0;
            }

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

            .mission-header h2 {
                font-size: 1.8rem;
            }

            .mission-card {
                padding: 1.5rem 1rem;
            }

            /* Contact Page */
            .contact-category {
                padding: 1.5rem;
            }
            
            .contact-category h3 {
                font-size: 1.3rem;
            }
            
            .contact-category p {
                font-size: 0.95rem;
            }
            
            .contact-form-container {
                padding: 1.5rem;
            }

            .cassette-section {
                padding: 1.5rem 0;
            }

            .cassette-player {
                padding: 1rem;
            }

            .cassette-label {
                padding: 0.8rem;
            }

            .cassette-controls {
                gap: 0.8rem;
            }

            .cassette-button {
                padding: 6px 12px;
                font-size: 0.8rem;
            }

            .cassette-track {
                padding: 0.8rem;
            }

            .track-number {
                width: 20px;
                height: 20px;
                font-size: 0.7rem;
                margin-right: 0.6rem;
            }

            .track-info h3 {
                font-size: 0.9rem;
            }

            .track-info p {
                font-size: 0.75rem;
            }

            /* About Page - Mobile Adjustments */
            .founders-section {
                padding: 1.5rem 0.5rem;
            }

            .founder-card {
                padding: 1.5rem;
            }

            .founder-image {
                width: 100px;
                height: 100px;
            }

            /* Mobygratis Page */
            .mobygratis-title {
                font-size: 1.7rem;
            }

            .mobygratis-article {
                padding: 1rem 0;
            }

            .mobygratis-article p {
                font-size: 1rem;
            }
            
            .section-heading {
                font-size: 1.3rem;
            }

            /* LinkedIn Embed Mobile */
            .linkedin-embed {
                margin: 1.5rem 0;
            }

            .linkedin-embed iframe {
                min-height: 250px;
            }

            .linkedin-fallback {
                padding: 1.5rem;
            }
        }

    /* Logo Styles - Cropped and Fitted */
    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        height: 60px;
        padding: 5px 0;
    }

    .logo-image {
        height:60px;
        width: 130px;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    /* Responsive Logo Sizing */
    @media (max-width: 768px) {
        .logo-image {
            height: 35px;
            width: 120px;
        }
    }

    @media (max-width: 480px) {
        .logo-image {
            height: 30px;
            width: 100px;
        }
    }

    /* ======================================
       LIGHT MODE SPECIFIC OVERRIDES
       ====================================== */
    body.light-mode .nav-links a:hover,
    body.light-mode .nav-links a.active {
        background: linear-gradient(135deg, #7c6bf0 0%, #b24ce6 100%);
        color: #ffffff;
    }

    body.light-mode .social-links a {
        background: var(--card-color);
        border: 1px solid var(--border-color-strong);
    }

    body.light-mode .content-article {
        background: var(--card-color);
    }

    body.light-mode .content-article:hover {
        background: var(--link-a-hover-color);
        color: white;
    }

    @media (max-width: 768px) {
        body.light-mode .nav-links {
            background: var(--nav-bg);
        }
    }
 