
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #111111;
            color: #d1d5db; /* gray-300 */
        }
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
        }
        .text-gold { color: #0adbe8; }
        .bg-gold { background-color: #0adbe8; }
        .border-gold { border-color: #0adbe8; }
        .hero-bg {
            background-image: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)), url('../img/hero.jpg');
            background-attachment: fixed;
            background-size: cover;
        }
        .header-bg {
            background-color: rgba(17, 17, 17, 0.85);
            backdrop-filter: blur(12px);
        }
        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 2px;
            margin-top: 8px;
            background-color: #0adbe8;
        }
        .btn-primary {
            border: 1px solid #0adbe8;
            color: #0adbe8;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #0adbe8;
            color: #111111;
        }
        .service-card {
            background-color: #1a1a1a;
            border: 1px solid #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
        }
    