/* --- Variables & Reset --- */
:root {
    --primary-olive: #afb42b;
    --primary-dark: #939724;
    --secondary-yellow: #fbc02d;
    --teal: #009688;
    --teal-dark: #00443e;
    --text-dark: #333333;
    --text-white: #ffffff;
    --bg-light: #f5f5f5;
    --btn-red: #f44336;
}

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

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-white);
}

h1,
h2,
h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.align-top {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

/* --- Colors --- */
.bg-secondary {
    background-color: var(--secondary-yellow);
    color: var(--text-white);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-olive {
    background-color: var(--primary-olive);
}

.bg-white {
    background-color: var(--text-white);
}

.bg-gradient-blue {
    background: linear-gradient(to bottom, #1976d2, #1565c0);
    /* Approximated based on source */
    color: white;
}

.white-text {
    color: var(--text-white);
}

/* --- Components --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 1rem;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--btn-red);
    color: white;
    box-shadow: 0 4px 0 #b0150a;
}

.btn-teal {
    background-color: var(--teal);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 0 var(--teal-dark);
}

/* --- Specific Sections --- */

/* Hero */
.hero-section {
    height: 500px;
    /* Adjust height based on image */
    background-image: url('../images/header-bg.png');
    background-size: cover;
    background-position: center top;
    position: relative;
}

/* Video Section */
.iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.optin-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.optin-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.optin-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.micro-text {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* USP Stats */
.usp-stats .usp-box {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 5px;
    flex: 1;
    min-width: 250px;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-olive);
    margin-bottom: 5px;
}

/* Cards / Offer */
.card {
    flex: 0 0 45%;
    background: var(--text-white);
    padding: 0 0 30px 0;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-img-top {
    background-color: var(--primary-dark);
    padding: 30px 0;
    margin-bottom: 20px;
}

.card-img-top img {
    border-radius: 50%;
    border: 5px solid white;
    width: 125px;
    height: 125px;
    object-fit: cover;
}

.card h3 {
    color: var(--primary-olive);
    padding: 0 20px;
    min-height: 60px;
    /* Align titles */
}

.card p {
    padding: 0 20px;
    color: #666;
    margin-bottom: 25px;
}

/* Story Section */
.rounded-img {
    border-radius: 10px;
    max-width: 100%;
    border: 5px solid white;
}

.padding-right {
    padding-right: 40px;
}

/* Footer */
footer {
    background-color: white;
    padding: 40px 0;
    border-top: 1px solid #ddd;
}

.footer-text h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: #222;
}

.footer-img {
    max-width: 200px;
    border-radius: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
    }

    .col-half {
        width: 100%;
        padding: 0;
    }

    .card {
        width: 100%;
        flex: 0 0 100%;
    }

    .text-left {
        text-align: center;
    }

    .padding-right {
        padding-right: 0;
    }

    .hero-section {
        height: 200px;
    }

    /* Smaller hero on mobile */
}