
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

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

h1, h2 {
    color: #DAA520; /* Gold */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
}

h2 {
    font-size: 2em;
    margin-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero {
    padding: 4em 0;
    background-color: #111;
}

.subheadline {
    font-size: 1.2em;
    margin-bottom: 2em;
}

.cta-buttons .btn {
    display: block;
    width: 80%;
    margin: 1em auto;
    padding: 1em;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #DAA520; /* Gold */
    color: #000;
}

.btn-secondary {
    border: 2px solid #DAA520; /* Gold */
}

main section {
    padding: 4em 0;
    border-bottom: 1px solid #333;
}

.services ul, .why-us ul {
    list-style: none;
    padding: 0;
}

.services li, .why-us li {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.contact a {
    color: #DAA520; /* Gold */
    text-decoration: none;
    font-weight: bold;
}

footer {
    padding: 2em 0;
    background-color: #111;
}

footer a {
    color: #DAA520; /* Gold */
    text-decoration: none;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4em;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
    }

    .cta-buttons .btn {
        display: inline-block;
        width: auto;
        margin: 0 1em;
    }
    
    .services ul, .why-us ul {
        display: flex;
        justify-content: space-around;
    }
}
