  /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
:root {
            --contact-navy: #002147;
            --contact-gold: #b38e5d;
            --contact-berry: #8e3a5f;
            --contact-bg-gray: #f4f4f4;
        }
        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }

        /* Header Container */
        .navbar {
            background-color: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            padding: 15px 40px;
            width: 100%;
            position: relative;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }
        

        /* Logo & Tagline */
        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-name {
            display: block;
            font-size: 26px;
            color: #1a3a63;
            letter-spacing: 1.5px;
            font-weight: 800;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .tagline {
            display: block;
            font-size: 13px;
            color: #555;
            line-height: 1.4;
            font-style: normal;
            margin-top: 4px;
            font-weight: 500;
        }

        /* Nav Links */
        .nav-links ul {
            list-style: none;
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #1a3a63;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #a64d79;
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #a64d79;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
            /* Ensure the dropdown container is tall enough to catch the mouse */
            height: 100%; 
            display: flex;
            align-items: center;
        }

        .dropbtn {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            padding: 10px 0; /* Invisible padding to help hover */
        }

        .dropdown-content {
            display: none; /* Hidden by default */
            position: absolute;
            top: 100%; /* Directly below the parent */
            left: 0;
            background-color: #ffffff;
            min-width: 320px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            z-index: 100;
            border-radius: 8px;
            padding: 12px 0;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s, transform 0.3s;
        }

        .dropdown-content li {
            display: block;
            width: 100%;
        }

        .dropdown-content a {
            padding: 12px 24px;
            font-size: 15px;
            color: #374151;
            display: block;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: background-color 0.2s, color 0.2s;
        }

        .dropdown-content a:hover {
            background-color: #f9fafb;
            color: #1a3a63;
            border-left: 3px solid #a64d79;
        }

        /* Show on Hover */
        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* CTA Button (Rose) */
        .cta-section {
            margin-left: 20px;
        }

        .phone-button {
            background-color: #a64d79;
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 6px rgba(166, 77, 121, 0.2);
        }

        .phone-button:hover {
            background-color: #8a3d62;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(166, 77, 121, 0.3);
        }

        .arrow {
            font-size: 11px;
            transition: transform 0.3s;
        }

        .dropdown:hover .arrow {
            transform: rotate(180deg);
        }
        /* Mention Legal code ---  */
        /* Legal Section Styling */
.page-title-strip {
    /* Exact Navy Blue (RvB : 3, 34, 76) */
    background-color: rgb(3, 34, 76); 
    padding: 20px 0;
    width: 100%;
    text-align: center;
}

.page-title-strip .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-title-strip h1 {
    color: #ffffff; /* White font */
    font-size: 32px;
    font-weight: 500;
    margin: 100;
    text-transform: none;
}

/* Ensure the header border doesn't double up with the strip */
.navbar {
    border-bottom: none; 
}

        .legal-section {
    padding: 40px 20px;
    background-color: #fff;
    /* Reduced font size for legal text density */
    font-size: 13px; 
    line-height: 1.5;
    color: #444;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 30px;
}

.legal-block h3 {
    color: #1a3a63;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.sub-heading {
    color: #1a3a63;
    font-size: 14px;
    margin: 15px 0 8px 0;
    font-weight: bold;
}

.legal-block p {
    margin-bottom: 10px;
    text-align: justify;
}

.legal-list {
    margin: 10px 0 15px 20px;
}

.legal-list li {
    margin-bottom: 5px;
}

.highlight-pink {
    background-color: #ff00ff;
    color: #fff;
    padding: 0 2px;
}

.highlight-yellow {
    background-color: #ffff00;
    padding: 0 2px;
}
/* Cookie Section Specifics */
.cookie-consent-box {
    background-color: #f4f7fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px dashed #1a3a63;
    margin: 15px 0;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #1a3a63;
    cursor: pointer;
    margin-top: 10px;
}

.consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Ensure consistent small font across all legal text */
.legal-block p, 
.legal-block span, 
.legal-list li {
    font-size: 13px;
    line-height: 1.6;
}
        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 900px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }

            .nav-links ul {
                flex-direction: column;
                gap: 15px;
                width: 100%;
                text-align: center;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                border: none;
                padding-left: 20px;
                display: none;
                background-color: #f9f9f9;
                border-radius: 4px;
            }

            .dropdown:hover .dropdown-content {
                display: block;
            }

            .cta-section {
                margin-left: 0;
                width: 100%;
                text-align: center;
            }
            
            .phone-button {
                width: 100%;
                text-align: center;
            }
        }
/*Contact*/

        .contact-header-top {
            background-color: var(--contact-navy);
            padding: 15px 0;
            text-align: center;
        }

        .contact-header-title {
            color: white;
            margin: 0;
            font-weight: 400;
            font-size: 1.5rem;
        }

        .contact-main-wrapper {
            max-width: 1300px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .contact-grid-container {
            display: flex;
            gap: 50px;
            align-items: stretch;
        }

        .contact-section-form {
            flex: 1.4;
            padding-top: 10px;
        }

        .contact-section-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-img-fluid {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }

        .contact-title-gold {
            color: var(--contact-gold);
            font-family: serif;
            font-size: 2.5rem;
            margin-bottom: 25px;
        }

        .contact-text-bold {
            color: var(--contact-navy);
            font-weight: bold;
            margin-bottom: 5px;
        }

        .contact-text-small {
            font-size: 0.9rem;
            color: #444;
            line-height: 1.4;
        }

        .contact-form-border-box {
            border: 1px solid var(--contact-berry);
            padding: 30px;
        }

        .contact-input-group {
            margin-bottom: 20px;
        }

        .contact-label {
            display: block;
            color: var(--contact-berry);
            font-size: 0.85rem;
            margin-bottom: 8px;
        }

        .contact-field, .contact-area {
            width: 100%;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 5px;
            outline: none;
            font-size: 1rem;
        }

        .contact-field:focus, .contact-area:focus {
            border-bottom: 1px solid var(--contact-berry);
        }

        .contact-btn-submit {
            background-color: var(--contact-berry);
            color: white;
            border: none;
            padding: 10px 35px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 10px;
        }

        .contact-error {
            color: #cc0000;
            font-size: 0.75rem;
            display: block;
            margin-top: 5px;
            min-height: 1em;
        }

        .contact-legal-footer {
            font-size: 0.75rem;
            margin-top: 25px;
            color: #666;
        }

        .contact-legal-link {
            background-color: yellow;
            color: black;
            text-decoration: none;
            padding: 0 2px;
        }

        .contact-location-container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            text-align: center;
        }

        .contact-location-address {
            color: var(--contact-navy);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 40px;
        }

        .contact-location-grid {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .contact-location-col {
            flex: 1;
            height: 400px;
            overflow: hidden;
            border-radius: 4px;
        }

        .contact-location-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .contact-location-map {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        @media (max-width: 768px) {
            .contact-location-grid { flex-direction: column; }
            .contact-location-col { height: 300px; }
            .contact-grid-container { flex-direction: column; }
        }