:root {
    --color-brown: #3D1F16;
    --color-gold: #C5A059;
    --color-cream: #F9F5F0;
    --color-cta: #1EAB52;
    /* Kept an engaging green for the button, slightly more muted to fit the luxury theme */
    --color-cta-hover: #168a40;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-brown);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

/* Typography elements */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.highlight {
    color: var(--color-gold);
    font-style: italic;
}

.highlight-text {
    color: var(--color-brown);
    font-weight: 600;
    border-bottom: 2px solid var(--color-gold);
}

/* CTA Button - Luxurious but converting */
.cta-button {
    display: inline-block;
    background-color: var(--color-cta);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 4px;
    /* Less rounded for more serious/luxury feel */
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(30, 171, 82, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 171, 82, 0.4);
}

.pulse-effect {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 171, 82, 0.6);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(30, 171, 82, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 171, 82, 0);
    }
}

/* Hero Section */
.hero {
    background-color: var(--color-brown);
    color: var(--color-cream);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent for Hero */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(61, 31, 22, 0) 60%);
    pointer-events: none;
}

.hero-content {
    animation: fadeIn 1.2s ease-out forwards;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headline {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--color-cream);
}

.subheadline {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 50px;
    color: rgba(249, 245, 240, 0.85);
}

.hero-media {
    margin: 0 auto 50px;
    max-width: 700px;
    border-radius: 8px;
    /* Sharper corners for luxury */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.hero-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hero-media:hover img {
    transform: scale(1.03);
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--color-brown);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.module-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(61, 31, 22, 0.04);
    border-top: 4px solid var(--color-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 31, 22, 0.08);
}

.module-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.module-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-brown);
}

.module-card p {
    font-size: 1.05rem;
    color: #555;
}

/* Offer Section */
.offer {
    padding: 90px 0;
    background-color: #ffffff;
}

.offer-box {
    background: var(--color-brown);
    border-radius: 4px;
    padding: 70px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(61, 31, 22, 0.15);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.offer-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gold);
}

.offer-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.pricing {
    margin-bottom: 35px;
}

.old-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(249, 245, 240, 0.5);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.new-price {
    font-size: 1.6rem;
    color: var(--color-gold);
    font-weight: 500;
}

.new-price span {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    margin-top: 5px;
    color: var(--color-cream);
    line-height: 1;
}

.offer-description {
    font-size: 1.1rem;
    color: rgba(249, 245, 240, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button.cta-large {
    font-size: 1.25rem;
    padding: 22px 50px;
}

/* Guarantee Section */
.guarantee {
    padding: 90px 0;
    background-color: var(--color-cream);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-seal img {
    width: 130px;
    height: auto;
    opacity: 0.9;
}

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

.guarantee-text h3 {
    font-size: 1.8rem;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
}

/* Footer Section */
.footer {
    background-color: var(--color-brown);
    color: rgba(249, 245, 240, 0.5);
    padding: 80px 0 50px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.legal-notice {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(249, 245, 240, 0.1);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.link-section h4 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.link-section p {
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 850px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1.15rem;
    }

    .section-title,
    .offer-title {
        font-size: 2rem;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-button {
        padding: 18px 30px;
        font-size: 1.05rem;
        width: 100%;
    }

    .new-price span {
        font-size: 3.5rem;
    }
}