:root {
            --primary-blue: #0b1f38;
            --secondary-blue: #0f294a;
            --accent-gold: #c59b27;
            --accent-gold-hover: #b08a22;
            --beige-bg: #eddcb5;
            --text-dark: #334155;
            --light-border: #e2e8f0;
            --whatsapp-green: #25d366;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: #fdfdfd;
        }
        
        .serif-font {
            font-family: 'Playfair Display', serif;
        }

        /* --- STABLE HEADER STYLES --- */
        .top-bar {
            background-color: var(--primary-blue);
            color: #ffffff;
            font-size: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .top-bar a { color: #ffffff; text-decoration: none; }
        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border-bottom: 1px solid var(--light-border);
        }
        .brand-icon-box {
            background-color: var(--primary-blue);
            color: #ffffff;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-size: 1.25rem;
            font-weight: bold;
        }
        .brand-main-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }
        .brand-sub-text {
            font-size: 0.65rem;
            font-weight: 500;
            color: #64748b;
            letter-spacing: 1.5px;
            display: block;
            margin-top: 1px;
        }
        .nav-link {
            color: var(--primary-blue) !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem !important;
        }
        .btn-gold {
            background-color: var(--accent-gold);
            color: #ffffff !important;
            font-weight: 500;
            padding: 0.55rem 1.3rem;
            border-radius: 4px;
            border: none;
            font-size: 0.9rem;
        }

        /* ================================================================= */
        /* UNIQUE REUSABLE INNER SECTION STYLES                              */
        /* ================================================================= */

        /* SECTION 1: Inner Page Title Breadcrumb Banner */
        .inner-page-banner {
            background: linear-gradient(rgba(11, 31, 56, 0.92), rgba(11, 31, 56, 0.92)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover;
            padding: 3.5rem 0;
            color: #ffffff;
        }
        .inner-banner-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .inner-breadcrumbs {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }
        .inner-breadcrumbs a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        /* SECTION 2: Layout Splitting Channels */
        .inner-main-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .inner-main-content p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #475569;
            margin-bottom: 1.5rem;
        }
        .inner-bullet-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 2rem;
        }
        .inner-bullet-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        .inner-bullet-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent-gold);
        }

        /* Reusable Left Sidebar Inner Nav Menu Box */
        .sidebar-inner-nav {
            background-color: #ffffff;
            border: 1px solid var(--light-border);
            border-radius: 6px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .sidebar-inner-nav h5 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        .sidebar-inner-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-inner-nav ul li {
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar-inner-nav ul li:last-child { border: none; }
        .sidebar-inner-nav ul li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 0;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .sidebar-inner-nav ul li a:hover, .sidebar-inner-nav ul li.active a {
            color: var(--accent-gold);
        }

        /* Quick Callback Feature Frame */
        .sidebar-callback-box {
            background-color: var(--primary-blue);
            color: #ffffff;
            padding: 1.5rem;
            border-radius: 6px;
            text-center;
        }
        .sidebar-callback-box h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--accent-gold); }
        .sidebar-callback-box p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }

        /* SECTION 3: Bottom Call-To-Action Ribbon Module */
        .cta-conversion-banner {
            background-color: #eddcb5;
            padding: 2.5rem 0;
            border-top: 1px solid rgba(0,0,0,0.03);
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }
        .cta-conversion-banner h4 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin: 0;
        }
        .cta-conversion-banner p {
            margin: 0;
            color: #475569;
            font-size: 0.92rem;
        }
        .btn-cta-dark {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: opacity 0.2s;
        }
        .btn-cta-dark:hover { color: #ffffff; opacity: 0.9; }

        /* --- STABLE FOOTER STYLES --- */
        footer {
            background-color: var(--primary-blue);
            color: #ffffff;
            padding: 3.5rem 0 1.5rem;
            font-size: 0.82rem;
        }
        footer h6 { font-size: 0.9rem; font-weight: 600; color: var(--accent-gold); margin-bottom: 1.2rem; text-transform: uppercase; }
        footer ul { list-style: none; padding: 0; margin: 0; }
        footer ul li { margin-bottom: 8px; }
        footer ul li a { color: rgba(255,255,255,0.7); text-decoration: none; }
        .footer-brand-title { font-size: 1.15rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
        .footer-social-strip a { color: #ffffff; background-color: rgba(255,255,255,0.06); width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 6px; }
        .newsletter-input-group { display: flex; }
        .newsletter-input-group input { border: none; padding: 0.5rem 0.8rem; font-size: 0.8rem; border-radius: 4px 0 0 4px; width: 100%; outline: none; }
        .newsletter-input-group button { background-color: var(--accent-gold); color: #ffffff; border: none; padding: 0.5rem 1rem; border-radius: 0 4px 4px 0; font-size: 0.8rem; }
        .footer-base-strip { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; margin-top: 2.5rem; display: flex; justify-content: space-between; color: rgba(255,255,255,0.4); font-size: 0.75rem; }
        .footer-base-strip a { color: rgba(255,255,255,0.4); text-decoration: none; }
        .whatsapp-floating-ball { position: fixed; bottom: 25px; right: 25px; background-color: #25d366; color: #ffffff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 1000; }
    