        :root {
            --primary-purple: #990099; 
            --purple-light: #fdf4ff;
            --purple-dark: #700070;
            --body-bg: #ffffff; 
            --text-dark: #0f172a;
            --text-slate: #475569;
            --nav-bg: #ffffff;
            --divider: #e2e8f0;
            --myth-accent: #dc2626;
        --nav-highlight: #990199;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--body-bg);
            color: var(--text-dark);
            margin: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            line-height: 1.6;
        }

        .hero-banner h1 {
            font-family: 'Lato', sans-serif;
            font-weight: 900;
        }

        h1, h2, h3, .hero-banner h1, .myth-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        strong {
        font-weight: 550;
         color: #485669; /* A soft dark grey makes the heavy weight feel less aggressive */
        }
        /* Top Navigation Styling */
        .top-nav {
            background-color: #fafafa;
            padding: 0 40px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-logo-link {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

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

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--nav-highlight);
        }

        .nav-links a.active {
            color: var(--nav-highlight);
            border-bottom: 2px solid var(--nav-highlight);
            padding-bottom: 4px;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            color: var(--text-dark);
        }

        /* --- HERO BANNER --- */
        .hero-banner {
            position: relative;
            width: 100%;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
            background-color: #0f172a;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: linear-gradient(rgba(24, 28, 39, 0.75), rgba(14, 15, 19, 0.95)), 
                        url('https://res.cloudinary.com/dhlerngui/image/upload/f_auto,q_auto/v1771957595/hands-in-handcuffs-in-a-prison-cell_wuetmq.webp');
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
            text-transform: uppercase;
        }

        /* --- EDITORIAL LIST LAYOUT --- */
        main {
            flex-grow: 1;
            padding: 60px 20px;
            max-width: 850px;
            margin: 0 auto;
            width: 100%;
        }

        .myth-list {
            display: flex;
            flex-direction: column;
        }

        .myth-item {
            border-bottom: 1px solid var(--divider);
            padding: 40px 0;
            transition: background-color 0.3s ease;
        }

        .myth-item:first-child {
            padding-top: 0;
        }

        .myth-header {
            width: 100%;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            display: flex;
            align-items: flex-start;
            gap: 24px;
            padding: 0;
        }

        .myth-number {
            font-family: 'Lato', sans-serif;
            font-weight: 900;
            font-size: 0.85rem;
            color: var(--primary-purple);
            opacity: 0.5;
            padding-top: 5px;
            min-width: 25px;
        }

        .myth-text-container {
            flex-grow: 1;
        }

        .myth-text {
            font-size: 1.25rem;
            line-height: 1.4;
            color: rgb(87, 87, 87);
            margin: 0;
            display: block;
            transition: color 0.3s ease;
        }

        .myth-sublabel {
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--purple-dark);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .myth-toggle {
            font-size: 1.5rem;
            color: var(--divider);
            transition: transform 0.3s ease, color 0.3s ease;
            line-height: 1;
        }

        /* Reveal Section */
        .reality-reveal {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        }

        .reality-content {
            padding-top: 24px;
            padding-left: 49px; /* Align with myth text */
        }

        .reality-header {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--primary-purple);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .reality-header::after {
            content: '';
            height: 1px;
            background: var(--primary-purple);
            flex-grow: 1;
            opacity: 0.2;
        }

        .reality-body {
            font-size: 1.05rem;
            color: var(--text-slate);
            margin: 0;
            font-weight: 400;
        }

        .reality-body a {
           color: #990199;
           font-weight:600;
        }

        /* Active State */
        .myth-item.active .myth-text {
            color: var(--primary-purple);
        }

        .myth-item.active .myth-toggle {
            transform: rotate(45deg);
            color: var(--primary-purple);
        }

        .myth-item.active .reality-reveal {
            max-height: 2000px;
            transition: max-height 1s ease-in-out;
        }

        /* Footer Styling */
        .site-footer {
            background-color: #000;
            border-top: 3px solid var(--nav-highlight);
            color: #fff;
            padding: 80px 40px 40px 40px;
            position: relative;
            z-index: 10;
            margin-top: auto;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }

        .footer-logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -1px;
            display: block;
            margin-bottom: 10px;
        }

        .footer-brand p {
            color: #94a3b8;
            font-size: 0.8rem;
            line-height: 1.6;
            margin-top: 15px;
            max-width: 800px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            color: #94a3b8;
            transition: color 0.2s;
        }

        .footer-social a:hover {
            color: var(--nav-highlight);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
        }

        .footer-heading {
            font-weight: 900;
            font-size: 0.9rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--nav-highlight);
        }


.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    /* This pushes the first child to the left and the last to the right */
    justify-content: space-between; 
    align-items: center;
    color: #64748b;
    font-size: 0.8rem;
    flex-wrap: wrap; 
}

.footer-links {
    display: flex;
    gap: 5px; /* Adds space between the individual links */
}
        .footer-bottom a {
            color: #64748b;
            font-size: 0.75rem;
        }

        /* Consolidated Mobile Navigation & Layout */
        @media screen and (max-width: 1000px) {
            .top-nav {
                padding: 0 20px;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                flex-direction: column;
                gap: 0;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }
            .nav-links.active {
                max-height: 500px; /* Increased to ensure all items show */
            }
            .nav-links li {
                width: 100%;
                border-top: 1px solid var(--divider);
            }
            .nav-links a { 
                display: block; 
                padding: 18px 20px !important; 
                width: 100%; 
                box-sizing: border-box; 
                border-bottom: none !important;
            }
            .nav-links a.active { 
                border-left: 4px solid var(--nav-highlight); 
                padding-bottom: 18px !important; 
            }
                    /* Footer Adjustments */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .site-footer {
                padding: 40px 20px 20px 20px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
}
        @media screen and (max-width: 768px) {
            
            /* Content Adjustments */
            main {
                padding: 40px 20px;
            }
            .myth-item {
                padding: 30px 0;
            }
            .myth-text {
                font-size: 1.1rem;
            }
            .myth-number {
                display: none;
            }
            .reality-content {
                padding-left: 0;
                padding-top: 20px;
            }

        }
