/* Variables */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --dark-grey: #1a1a1a;
    --light-grey: #f5f5f5;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    color: var(--white);
    background-color: var(--black);
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: var(--black);
    border-bottom: 1px solid var(--dark-grey);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 270px;
}

.logo {
    align-self: flex-end;
}

.logo img {
    height: 250px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background-color: var(--black);
    padding: 30px 20px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

/* Sections */
.section {
    padding: 50px 20px;
}

.section.alt {
    background-color: var(--dark-grey);
}

.section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    max-width: 700px;
}

.section h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Features List */
.features {
    list-style: none;
    margin-top: 20px;
}

.features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #ccc;
}

.features li:before {
    content: "•";
    color: var(--gold);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: left;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #999;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 0px;
}

.cta-button:hover {
    background-color: #e0c270;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--dark-grey);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .logo img {
        height: 150px;
    }

    .nav a {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section h2 {
        font-size: 32px;
    }
}
