:root {
            --primary-dark: #0a2540;
            --primary-gold: #c9a35e;
            --primary-light: #f8f9fa;
            --secondary-teal: #1a7f7a;
            --text-dark: #333333;
            --text-light: #6c757d;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .display-font {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        .navbar {
            background-color: rgba(10, 37, 64, 0.95) !important;
            backdrop-filter: blur(10px);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-gold) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.9)), url('https://images.unsplash.com/photo-1517722014278-c256a91a6fba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 10rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .btn-primary-custom {
            background-color: var(--primary-gold);
            border: none;
            color: var(--primary-dark);
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #d8b46c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary-gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        .text-gold {
            color: var(--primary-gold) !important;
        }
        .bg-light-custom {
            background-color: #f9fafb;
        }
        .gem-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .gem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
        }
        .gem-card img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gem-card:hover img {
            transform: scale(1.05);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(201, 163, 94, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .icon-box i {
            font-size: 1.8rem;
            color: var(--primary-gold);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1;
        }
        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            color: var(--primary-gold);
            width: 30px;
            font-size: 1.2rem;
        }
        .footer {
            background-color: var(--primary-dark);
            color: rgba(255,255,255,0.8);
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--primary-gold);
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 0.5rem;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.3rem;
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        .flink:hover {
            background: rgba(201, 163, 94, 0.2);
            border-color: var(--primary-gold);
            color: white;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(201, 163, 94, 0.1);
            color: var(--primary-dark);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(201, 163, 94, 0.25);
        }
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
