body {
    font-family: 'Work Sans', sans-serif;
    background-color: #fffdf9;
    color: #1f1f1f;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: #eec00b;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}


/* === HERO === */

.hero-header {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-banner {
    width: 100%;
    height: auto;
    /* or use something like 60vh */
    overflow: hidden;
    margin: 0 auto;
    background-color: #8e0c08;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-overlay p {
    font-size: 1.3rem;
}


/* === SECTION STYLES === */

section.light {
    background-color: #fffdf9;
}

section.dark {
    background-color: #1a0606;
    color: #fff;
}

section.dark h2 {
    color: white;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-left: 6px solid #eec00b;
    padding-left: 1rem;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

section ul {
    list-style-type: disc;
    margin-left: 2rem;
    font-size: 1.1rem;
}


/* === SPLIT SECTION === */

.split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.text {
    flex: 1 1 55%;
}

.quote-box {
    flex: 1 1 40%;
    background-color: #2a0c0c;
    padding: 2rem;
    border-left: 4px solid #eec00b;
    border-radius: 6px;
}

.quote-box blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #f4f4f4;
}

.quote-box span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #eec00b;
}


/* === BENEFITS GRID === */

.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    color: #1f1f1f;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #1a0606;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}


/* === CTA === */

.cta {
    text-align: center;
    padding: 4rem 2rem;
    margin: 0;
    background-color: #121010 !important;
}

.cta p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.cta h2 {
    border-left: none;
    color: #eec00b !important;
}


/* === RESPONSIVE === */

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
    .hero-overlay p {
        font-size: 1rem;
    }
    .split {
        flex-direction: column;
    }
    .quote-box {
        margin-top: 2rem;
    }
}