:root {
    --primary-color: #0A2342;
    --accent-color: #D4AF37;
    --background-color: #FDFBF7;
    --text-color: #333333;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lato', sans-serif;
}

body {
    margin: 0;
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-top: 0;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

.hero .container {
    padding: 0;
}

.hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Problem/Solution Section --- */
.problem-solution {
    text-align: center;
}

.problem-solution h2 {
    font-size: 2.2rem;
}

.problem-solution .section-intro {
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
}

.solution-box {
    background-color: #fff;
    border-left: 5px solid var(--accent-color);
    padding: 2rem;
    text-align: left;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- Lead Magnet / CTA Sections --- */
.lead-magnet {
    background-color: #f4f0e9;
    text-align: center;
}

.lead-magnet h2, .final-cta h2 {
    font-size: 2.2rem;
}

.lead-magnet h3, .final-cta h3 {
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--body-font);
}

.final-cta {
    background-color: var(--primary-color);
    color: #fff;
}
.final-cta h2, .final-cta h3 {
    color: #fff;
}


/* --- What You'll Learn Section --- */
.what-you-learn {
    text-align: center;
}
.what-you-learn h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

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

.benefit-item .icon-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem auto;
    /* Placeholder for actual icons */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}


.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* --- About Section --- */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.about-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 5px solid var(--accent-color);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.about-text h3 {
    font-family: var(--body-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

/* --- Testimonial Section --- */
.testimonial {
    text-align: center;
}

.testimonial-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: #f4f0e9;
    border-radius: 8px;
    border-top: 5px solid var(--accent-color);
}

.testimonial-box blockquote {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--primary-color);
    border: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.testimonial-box cite {
    font-style: normal;
    font-weight: bold;
    color: var(--text-color);
}


/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

footer .container {
    padding: 2rem 0;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* --- Responsive Design --- */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .email-form {
        flex-direction: row;
    }

    .email-form input {
        flex-grow: 1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        flex-direction: row;
        gap: 4rem;
        text-align: left;
    }
    
    .about-image-placeholder {
        width: 250px;
        height: 250px;
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
     .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
