:root {
            --primary-blue: #0a2463;
            --secondary-gold: #b8860b;
            --accent-green: #2e8b57;
            --light-cream: #f8f5f0;
            --dark-charcoal: #333333;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-charcoal);
            line-height: 1.7;
            background-color: #fff;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .display-font {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary-blue);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(10, 36, 99, 0.8)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .btn-primary-custom {
            background-color: var(--secondary-gold);
            border: none;
            padding: 0.8rem 2.2rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            color: white;
        }
        .btn-primary-custom:hover {
            background-color: #a0780a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(10, 36, 99, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            font-size: 1.8rem;
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1) !important;
        }
        .img-hover-zoom {
            overflow: hidden;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        .house-card {
            border-top: 5px solid;
            border-top-color: var(--secondary-gold);
        }
        .bg-light-custom {
            background-color: var(--light-cream);
        }
        .footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 4rem 0 1.5rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .flink {
            background-color: rgba(255,255,255,0.05);
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            display: inline-block;
            margin: 0.3rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .flink:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
            border-color: var(--secondary-gold);
        }
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.7rem;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: var(--secondary-gold);
            transform: translateY(-3px);
        }
        .badge-custom {
            background-color: var(--accent-green);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 36, 99, 0.05);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--secondary-gold);
            border: 3px solid white;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 6px;
            top: 15px;
            width: 3px;
            height: calc(100% + 1.5rem);
            background-color: #e9ecef;
        }
        .timeline-item:last-child::after {
            display: none;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }
        .stats-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
