:root {
    --primary-color: #2D5A27;
    /* Deep Green */
    --secondary-color: #D1E8E2;
    /* Soft Sage */
    --accent-color: #E67E22;
    /* Warm Orange for CTA */
    --text-color: #333;
    --bg-light: #F9FBFA;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--secondary-color) 100%);
    padding: 15px 0;
    /* Further reduced from 30px */
    text-align: center;
}

.hero-logo .logo {
    max-width: 100px;
    /* Reduced from 120px */
    margin-bottom: 5px;
    /* Reduced from 10px */
}

.hero-title {
    font-size: 2.1rem;
    /* Slightly smaller */
    color: var(--primary-color);
    margin-bottom: 8px;
    /* Reduced from 10px */
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 15px;
    /* Reduced from 25px */
    color: #555;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-media .main-image {
    width: 100%;
    max-width: 320px;
    /* Reduced from 380px */
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    /* Reduced from 20px */
}

.price-badge {
    margin-bottom: 15px;
    /* Reduced from 30px */
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #D35400;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Problem/Solution */
.problem-solution {
    background-color: var(--bg-white);
}

.problem-solution .content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fdfdfd;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1.1rem;
}

.problem-media .problem-image {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .problem-solution .content {
        flex-direction: column;
        text-align: center;
    }

    .problem-media .problem-image {
        max-width: 100%;
    }
}

/* Benefits */
.benefits {
    background-color: var(--bg-light);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* What is Inside */
.what-is-inside {
    background-color: var(--bg-white);
}

.topics-card {
    background-color: #f0f7f4;
    /* Light sage/green consistent with site */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-color);
    border: 1px solid var(--secondary-color);
}

.topic-item {
    margin-bottom: 25px;
}

.topic-item:last-child {
    margin-bottom: 0;
}

.topic-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.topic-header span {
    font-size: 1.2rem;
}

.topic-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.topic-desc {
    color: #555;
    font-size: 1rem;
    padding-left: 31px;
    /* Align with text after icon */
}

@media (max-width: 600px) {
    .topics-card {
        padding: 25px 20px;
    }
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-light) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
}

/* Final Offer */
.final-offer {
    text-align: center;
    background-color: var(--bg-white);
}

.price-highlight {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0;
}

.warranty {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.warranty .icon {
    font-size: 2rem;
    margin-right: 10px;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #333;
    color: white;
    text-align: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .price-highlight {
        font-size: 3rem;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1.2rem;
    }
}