/* Global Variables */
:root {
    --primary-green: #1a5d2e;
    --secondary-green: #4caf50;
    --bg-light: #fdf5e6;
    --text-dark: #121212;
    --accent-orange: #e67e22;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --font-main: 'Assistant', sans-serif;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Animations */
@keyframes pulsate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulsate {
    animation: pulsate 2s infinite;
}

/* Sticky Promo Bar */
.promo-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
    font-weight: 600;
}

.promo-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.countdown {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1rem;
}

/* Navigation */
.main-nav {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin: 20px 0;
    line-height: 1.2;
}

.hero-text .eyebrow {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.stars {
    color: #f1c40f;
}

.price-box {
    margin: 20px 0;
    border: 3px solid var(--primary-green);
    background-color: var(--white);
    color: var(--text-dark);
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(26, 93, 46, 0.2);
    position: relative;
    /* For absolute positioning if needed */
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.new-price {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 5px;
    /* Pull closer to the old price */
    align-self: flex-start;
    /* Align near top */
    margin-top: 5px;
}

.savings-text {
    background-color: #fbbf24;
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 5px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.guarantee-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.hero-image-mobile {
    margin: 20px 0;
}

/* Problem Section */
.problem-section {
    background-color: var(--white);
    padding: 60px 0;
}

.problem-section h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.symptom-card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.symptom-card h3 {
    color: var(--accent-orange);
    margin-bottom: 10px;
}


.symptom-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    max-height: 200px;
    /* Prevent it from being too tall */
}

/* Benefits Section */
.solution-section {
    padding: 60px 0;
    background-color: var(--primary-green);
    color: var(--white);
}

.solution-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
}

.benefits-list strong {
    color: #fbbf24;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Reviews */
.reviews-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.reviews-section h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--accent-orange);
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 700;
    text-align: right;
}

.review-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Bonuses */
.bonuses-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.bonuses-section h2 {
    color: #d35400;
    /* Stronger orange */
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    background-color: #fff3cd;
    /* Light yellow highlight */
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.2);
    margin-bottom: 30px;
    border: 2px dashed #d35400;
    animation: pulsate 2s infinite;
}

.bonuses-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.bonus-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}

.bonus-card h3 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.bonus-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.pricing-card {
    background-color: var(--white);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.pricing-body {
    padding: 30px;
    text-align: center;
}

.pricing-body ul {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-body li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.payment-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 15px;
}

/* Footer */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-container {
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image-mobile {
        display: none;
    }

    .hero-image-desktop {
        flex: 1;
        display: block;
    }

    .hero-badges {
        justify-content: flex-start;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .hero-image-desktop {
        display: none;
    }

    .savings-text {
        font-size: 1.4rem;
        padding: 8px 20px;
        display: block;
        margin: 0 auto 15px;
        width: fit-content;
        text-align: center;
        font-weight: 900;
        border: 2px solid #000;
        animation: pulse-small 2s infinite;
    }
}

/* Pricing Card Styles */
/* Pricing Card Styles - Matching Hero Box */
.price-display {
    display: inline-block;
    /* Changed from flex to match hero */
    margin: 20px auto;
    border: 3px solid var(--primary-green);
    background-color: var(--white);
    color: var(--text-dark);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 93, 46, 0.2);
    position: relative;
    text-align: center;
    /* Ensure contents are centered */
}

/* Ensure inner row aligns correctly */
.price-display .price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
}

.final-price {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-weight: 800;
}