  /* --- PREMIUM NAVY & GOLD THEME --- */
        :root {
            --navy: #0A192F;
            --navy-light: #112240;
            --gold: #D4AF37;
            --gold-hover: #b5952f;
            --text-dark: #1a1a1a;
            --text-light: #4a5568;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
        }


a{
    text-decoration: unset !important;
}

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-light);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
            color: var(--navy);
            line-height: 1.3;
        }

        .text-gold { color: var(--gold) !important; }
        .text-navy { color: var(--navy) !important; }
        .bg-navy { background-color: var(--navy) !important; }
        .bg-navy-light { background-color: var(--navy-light) !important; }
        
        .section-pad { padding: 90px 0; }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0; bottom: 0;
            width: 80px; height: 3px;
            background-color: var(--gold);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* --- BUTTONS --- */
        .btn-gold {
            background-color: var(--gold);
            color: var(--navy);
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--gold);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-gold:hover {
            background-color: transparent;
            color: var(--gold);
        }
        .btn-outline-gold {
            background-color: transparent;
            color: var(--gold);
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--gold);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-outline-gold:hover {
            background-color: var(--gold);
            color: var(--navy);
        }

        /* --- NAVBAR --- */
        .navbar {
            background-color: var(--navy);
            padding: 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: #fff !important;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .nav-link:hover { color: var(--gold) !important; }
        .nav-phone {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--gold);
            padding: 8px 20px;
            border-radius: 4px;
            color: var(--gold) !important;
        }

        /* --- HERO --- */
        .hero {
            position: relative;
            padding: 180px 0 120px;
            background: linear-gradient(to right, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.7)), url('images/close-up-law-scale.jpg') center/cover;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
        }

        /* --- CARDS & GRIDS --- */
        .custom-card {
            background: white;
            padding: 40px 30px;
            border-top: 4px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .custom-card:hover { transform: translateY(-10px); }
        .icon-circle {
            width: 70px; height: 70px;
            background: var(--navy);
            color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 25px;
        }

        /* --- DIRECT SELLING LIST --- */
        .ds-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: var(--text-dark);
        }
        .ds-list li i {
            position: absolute;
            left: 0; top: 5px;
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* --- IMAGE WRAPPERS --- */
        .img-frame {
            position: relative;
            padding: 15px;
        }
        .img-frame::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 30px; left: 30px;
            border: 2px solid var(--gold);
            z-index: 0;
        }
        .img-frame img {
            position: relative;
            z-index: 1;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        /* --- ACCORDION FAQ --- */
        .accordion-item {
            border: none;
            border-bottom: 1px solid #e2e8f0;
            background: transparent;
        }
        .accordion-button {
            font-family: 'Merriweather', serif;
            font-weight: 700;
            color: var(--navy);
            background: transparent !important;
            padding: 20px 0;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) { color: var(--gold); }
        .accordion-body { padding: 0 0 20px 0; color: var(--text-light); }

        /* --- CONTACT FORM --- */
        .form-control, .form-select {
            border: 1px solid #cbd5e1;
            padding: 12px 15px;
            border-radius: 0;
            background-color: var(--bg-white);
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--navy);
            box-shadow: none;
        }

        /* --- MARQUEE --- */
        .marquee-container {
            overflow: hidden;
            background: var(--gold);
            padding: 15px 0;
            white-space: nowrap;
        }
        .marquee-text {
            display: inline-block;
            color: var(--navy);
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 2px;
            animation: marquee 20s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--navy);
            color: rgba(255,255,255,0.6);
            padding-top: 80px;
        }
        footer h4 { color: white; font-family: 'Outfit', sans-serif; font-size: 1.2rem; margin-bottom: 25px; }
        footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--gold); }
        .footer-bottom { background-color: var(--navy-light); padding: 20px 0; margin-top: 50px; }
        
        .floating-whatsapp {
            position: fixed; bottom: 30px; right: 30px;
            background: #25D366; color: white;
            width: 60px; height: 60px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 999;
        }