* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0b0b0b;
    color: #e5e5e5;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
                url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c");
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 20px;
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.hero h1 {
    color: #d4af37;
    font-size: 3rem;
}

.hero p {
    margin-top: 10px;
    font-size: 1.2rem;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* SECTIONS */
section {
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
}

section h2 {
    color: #d4af37;
    margin-bottom: 20px;
}

/* SERVICES */
.services ul {
    list-style: none;
}

.services li {
    padding: 8px 0;
}

/* FORM */
form {
    display: grid;
    gap: 15px;
}

input, select, textarea {
    padding: 12px;
    border: none;
    border-radius: 4px;
}

/* FOOTER */
footer {
    background-color: #000;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}
