:root {
    --gold: #D4AF37;
    --dark-gold: #996515;
    --cream: #FFF8E7;
    --dark: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.pexels.com/photos/265906/pexels-photo-265906.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: var(--cream);
}

.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.contact h2 {
    color: var(--dark-gold);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--dark-gold);
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.app-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.app-button:hover {
    background: var(--dark-gold);
}

.app-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .app-links {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 40px 0;
    }
}