body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: #f2f2f2;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #b08d57;
}

.hero {
    height: 100vh;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    letter-spacing: 3px;
}

.divider {
    width: 80px;
    height: 2px;
    background-color: #b08d57;
    margin: 20px auto;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #7a1c1c;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #a12a2a;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #b08d57;
    color: #b08d57;
    text-decoration: none;
    margin-top: 20px;
}

.services, .gallery, .about, .challenge, .contact {
    padding: 80px 20px;
    text-align: center;
}

.service-grid, .gallery-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery img {
    width: 100%;
    transition: transform 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 15px;
    padding: 12px;
    background-color: #1a1a1a;
    border: none;
    color: #fff;
}

footer {
    padding: 30px;
    text-align: center;
    background-color: #1a1a1a;
}
