/* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-dark: #1A2A44;
            --accent-purple: #5B7C99;
            --text-dark: #333333;
            --white: #ffffff;
            --bg-light: #F8F5F0;
        }

        /* --- HEADER WRAPPER --- */
        .site-header {
            background-color: var(--bg-light);
            border-bottom: 2px solid #d4cfc7;
            padding: 20px 0;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        /* --- LOGO AREA --- */
        .logo-area {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1;
            letter-spacing: -0.5px;
            display: inline-block;
        }

        .logo span {
            color: var(--accent-purple);
            font-weight: 400;
        }

        /* image-specific rules */
        .logo-image img {
            display: block;
            max-width: 170px;
            height: auto;
        }

        .logo-tagline {
            font-size: 0.85rem;
            color: var(--text-dark);
            margin-top: 5px;
            font-style: italic;
            border-top: 1px solid var(--primary-dark);
            padding-top: 4px;
        }

        /* --- RIGHT SIDE (TOP BAR + NAV) --- */
        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 25px;
        }

        /* --- TOP BAR --- */
        .top-bar {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .phone-number {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cta {
            background-color: var(--accent-purple);
            color: var(--white);
            padding: 12px 30px;
            font-size: 0.95rem;
            font-weight: 700;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease, transform 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-cta:hover {
            background-color: #4a6a85;
            color: var(--white);
            transform: translateY(-2px);
        }

        /* --- MAIN NAVIGATION --- */
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .main-nav ul li a {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .main-nav ul li a:hover {
            color: var(--accent-purple);
        }

        /* --- MOBILE MENU TOGGLE --- */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--primary-dark);
            cursor: pointer;
        }

        /* --- RESPONSIVE DESIGN (MOBILE & TABLET) --- */
        @media (max-width: 1024px) {
            .header-right {
                align-items: center;
            }
            .main-nav ul {
                gap: 15px;
            }
            .main-nav ul li a {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 850px) {
            .mobile-toggle {
                display: block;
            }

            .header-right {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                align-items: flex-start;
                z-index: 1000;
            }

            .header-right.active {
                display: flex;
            }

            .top-bar {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                border-bottom: 1px solid #eee;
                padding-bottom: 15px;
                margin-bottom: 15px;
            }

            .main-nav {
                width: 100%;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }

            .main-nav ul li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
                padding-bottom: 10px;
            }
            
            .main-nav ul li:last-child {
                border-bottom: none;
            }
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-dark);
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            position: relative;
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .header-right {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: #fff;
                z-index: 1000;
                flex-direction: column;
                padding: 80px 24px 24px;
                overflow-y: auto;
            }

            .header-right.active {
                display: flex;
            }

            .main-nav ul {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .main-nav ul li {
                border-bottom: 1px solid #e8dfd2;
            }

            .main-nav ul li a {
                display: block;
                padding: 16px 0;
                font-size: 1.05rem;
                font-weight: 600;
            }

            .top-bar {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 24px;
                padding-bottom: 20px;
                border-bottom: 1px solid #e8dfd2;
            }

            .top-bar .btn-cta {
                width: 100%;
                text-align: center;
            }
        }