:root {
            --primary: #c5a880; /* Elegant Gold */
            --dark: #1a1a1a;
            --light: #f9f9f9;
            --grey: #777;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: var(--light);
        }

        h1, h2, h3, .logo {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
        }

        .container {
            max-width: 1280px;
            margin: auto;
        }

        /* Navbar */
        header {
            background-color: rgba(26, 26, 26, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(197, 168, 128, 0.2);
        }

        .logo {
            color: #fff;
            font-size: 1.8rem;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li a {
            color: #ddd;
            text-decoration: none;
            padding: 5px 15px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        /* Home / Hero Section */
        #home {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding-top: 150px;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 20px auto 30px;
            font-weight: 300;
            color: #e0e0e0;
        }

        .btn {
            display: inline-block;
            padding: 12px 35px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        .btn:hover {
            background: var(--primary);
            color: var(--dark);
        }

        /* Section Generic Styles */
        section {
            padding: 40px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 40px;
            position: relative;
            color: var(--dark);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background: var(--primary);
            margin: 15px auto 0;
        }

        /* About Section */
        #about {
            background-color: #fff;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .about-text p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }

        /* Services Section */
        #services {
            background-color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .service-card {
            background: #fff;
            padding: 40px 30px;
            text-align: center;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: var(--transition);
            border-top: 3px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-top: 3px solid var(--primary);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .service-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        /* Compliance Section */
        #compliance {
            background: linear-gradient(rgba(26, 26, 26, 0.92), rgba(26, 26, 26, 0.95)), 
                        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: #fff;
        }

        #compliance .section-title {
            color: #fff;
        }

        .compliance-box {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            padding: 40px;
            border: 1px solid rgba(197, 168, 128, 0.2);
            border-radius: 4px;
        }

        .compliance-list {
            list-style: none;
        }

        .compliance-list li {
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            font-weight: 300;
        }

        .compliance-list li:last-child {
            margin-bottom: 0;
        }

        .compliance-list i {
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
            font-size: 1.1rem;
        }

        /* Contact Section */
        #contact {
            background-color: #fff;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary);
            width: 50px;
            height: 50px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 20px;
        }

        .contact-item p {
            font-size: 1.1rem;
            color: #444;
        }

        .contact-item a {
            color: #444;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
        }

        .contact-form input, .contact-form textarea {
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
            outline: none;
        }

        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--primary);
        }

        .contact-form button {
            background: var(--dark);
            color: #fff;
            padding: 12px;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            transition: var(--transition);
        }

        .contact-form button:hover {
            background: var(--primary);
            color: var(--dark);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: #777;
            text-align: center;
            padding: 30px 0;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            #home {
            height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding-top: 150px;
        }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .logo {
                color: #fff;
                font-size: 1.5rem;
                letter-spacing: 1px;
            }
            .about-grid, .contact-grid {
                grid-template-columns: 1fr;
            }
            .about-img {
                order: -1;
            }
        }