:root {
    --primary-color: #2CAC43;
    --primary-dark: #218c35;
    --secondary-color: #f4f4f4;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --accent: #ff6b6b;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.highlight {
    color: var(--primary-color);
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(44, 172, 67, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 172, 67, 0.6);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 172, 67, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(44, 172, 67, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(44, 172, 67, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 8rem;
    /* Extra padding bottom for shape divider */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

@media (min-width: 992px) {
    .hero .container {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

@media (min-width: 992px) {
    .hero-subtitle {
        margin: 0 0 2rem;
    }
}

/* Hero Visual - Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    transform: rotate(-5deg);
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
    height: 250px;
    /* specific height for mobile */
}

.img-1 {
    transform: translateY(20px);
}

.img-2 {
    transform: translateY(-20px);
}

.img-3 {
    transform: translateY(20px);
}

@media (min-width: 768px) {
    .hero-img {
        height: 350px;
    }
}

/* Shape Divider */
.custom-shape-divider-bottom-1689944000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1689944000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

@media (min-width: 768px) {
    .custom-shape-divider-bottom-1689944000 svg {
        height: 120px;
    }
}

.custom-shape-divider-bottom-1689944000 .shape-fill {
    fill: #FFFFFF;
}

/* Sections General */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

/* Features Section */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-box {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 172, 67, 0.1);
    border-radius: 50%;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--font-main);
}

/* Showcase Section */
.showcase {
    background-color: #f9f9f9;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recipe-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-info {
    padding: 1.5rem;
    text-align: center;
}

.recipe-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.recipe-stats {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.recipe-stats i {
    color: var(--primary-color);
}

/* Authority Section */
.authority {
    background: linear-gradient(135deg, #2CAC43 0%, #1a8a31 100%);
    color: var(--white);
    padding: 4rem 0;
}

.auth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .auth-content {
        flex-direction: row;
        text-align: left;
    }

    .auth-img-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .auth-text {
        flex: 1.5;
    }
}

.auth-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.auth-text h2 {
    color: var(--white);
}

.auth-text .highlight {
    color: #ccffda;
    /* Lighther green for contrast on dark bg */
}

.auth-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Bonuses Section */
.bonuses {
    background-color: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bonus-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.bonus-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.bonus-img-wrapper {
    position: relative;
}

.bonus-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bonus-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-content {
    padding: 1.5rem;
}

.bonus-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.price-strike {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-free {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Pain Points Section */
.pain-points {
    background-color: #f9f9f9;
}

.pain-list,
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.pain-item,
.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pain-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Advantages Section */
.advantages {
    background-color: var(--white);
}

.advantage-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.advantage-item:hover {
    transform: translateX(10px);
    transition: var(--transition);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #fdfdfd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 1.5rem 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* arbitrary height for transition */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer / Price Section */
.footer {
    padding: 5rem 0 2rem;
    background: var(--text-dark);
    color: var(--white);
}

.price-box {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.book-cover {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-features li {
    font-weight: 600;
}

.price-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.price-tag h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    color: var(--text-light);
}

/* Guarantee Section Update */
.guarantee-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-seal {
    width: 150px;
    margin-bottom: 1rem;
}

.guarantee-title {
    color: #4a4a4a;
    /* Dark gray/brown like in image */
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.guarantee-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 500px;
}

.guarantee-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 400px;
}

.badge-item {
    border: 1px solid #555;
    /* Dark border */
    border-radius: 50px;
    /* Pill shape */
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #444;
    background: #fffdf5;
    /* Creamy background */
    font-size: 0.95rem;
}

.badge-item i {
    color: #444;
    font-size: 1.1rem;
}