        /* Basic Reset & Branding */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        :root { --primary-gold: #b08d57; --dark-grey: #333; --light-grey: #f4f4f4; }

        body { line-height: 1.6; color: var(--dark-grey); }

        /* Header & Hero */
        header { background: #fff; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-gold); }
        
        .hero { 
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTqya5UyJw9nVOs9T6XJEHSFbqsuq9TQ3Q2FWzktBdflQ&s'); 
            background-size: cover; background-position: center;
            height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; padding: 0 20px;
        }
        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
        .hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; }

        /* Buttons */
        .btn { background: var(--primary-gold); color: white; padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; transition: 0.3s; }
        .btn:hover { background: #8e7145; }

        /* Sections */
        section { padding: 4rem 10%; }
        .section-title { text-align: center; margin-bottom: 3rem; }
        .section-title h2 { font-size: 2.5rem; color: var(--primary-gold); }

        /* Services Grid */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        .service-card { background: var(--light-grey); padding: 2rem; border-radius: 8px; text-align: center; transition: transform 0.3s; }
        .service-card:hover { transform: translateY(-5px); }
        .service-card i { font-size: 2rem; color: var(--primary-gold); display: block; margin-bottom: 1rem; }

        /* Contact Section */
        .contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
        .contact-info h3 { margin-bottom: 1rem; }
        form input, form textarea { width: 100%; padding: 12px; margin-bottom: 1rem; border: 1px solid #ccc; border-radius: 4px; }
        form button { width: 100%; border: none; cursor: pointer; }

        /* Footer */
        footer { background: var(--dark-grey); color: white; text-align: center; padding: 2rem; margin-top: 2rem; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .contact-container { grid-template-columns: 1fr; }
        }
