* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #1d1d1d;
    -webkit-font-smoothing: antialiased;
}

/* Top Section */
.hero-section {
    background-color: #f6f3eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 60px 20px;
}

.logo-placeholder {
    max-width: 250px;
    margin-bottom: 16px;
}

.headline {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 700px;
    margin-bottom: 20px;
    color: #212121;
}

.headline .text-purple {
    color: #bfa1de;
}

.headline .text-green {
    color: #296d4c;
}

.subheadline {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #444444;
    max-width: 550px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #296d4c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 36px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(41, 109, 76, 0.2);
    transition: opacity 0.2s ease;
}

.cta-button:hover {
    opacity: 0.9;
}

/* Second Section */
.benefits-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 80px 20px;
}

.benefits-headline {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits-headline .text-purple {
    color: #bfa1de;
}

.benefits-list {
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    background-color: #f7f4f0;
    border: 1px solid #e2dcd3;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.benefit-item .icon {
    min-width: 22px;
    width: 22px;
    height: 22px;
    background-color: #55c88e;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-item .icon svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
}

.benefit-item p {
    font-size: 15px;
    font-weight: 500;
    color: #212121;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .headline {
        font-size: 28px;
    }

    .subheadline {
        font-size: 16px;
    }

    .benefits-headline {
        font-size: 20px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        flex-direction: column;
    }

    .question-headline {
        font-size: 20px;
    }

    .answer-text {
        font-size: 22px;
    }

    .answer-badge {
        font-size: 20px;
    }
}

/* Bonus Section */
.bonus-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
}

.bonus-headline {
    font-size: 28px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 8px;
    text-align: center;
}

.bonus-headline .text-purple {
    color: #bfa1de;
}

.bonus-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.bonus-card {
    background-color: #f9f6f3;
    border: 1px solid #ebe4dc;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bonus-badge {
    background-color: #bfa1de;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.bonus-icon {
    width: 44px;
    height: 44px;
    background-color: #f1eafd;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.bonus-icon svg {
    width: 22px;
    height: 22px;
    stroke: #bfa1de;
    fill: none;
    stroke-width: 2;
}

.bonus-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: left;
}

.bonus-card p {
    font-size: 13px;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    text-align: left;
}

/* Pricing Section */
.pricing-section {
    background-color: #f6f3eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.pricing-headline {
    font-size: 30px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-headline svg {
    width: 24px;
    height: 24px;
    stroke: #bfa1de;
}

.countdown-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.countdown-box {
    background-color: #f8f6f4;
    border: 1px solid #efeae6;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.countdown-number {
    font-size: 24px;
    font-weight: 800;
    color: #bfa1de;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: #888888;
    margin-top: 4px;
}

.countdown-separator {
    color: #bfa1de;
}

.countdown-separator svg {
    width: 12px;
    height: 12px;
    fill: #bfa1de;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 500px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    border: 1px solid #eaeaea;
}

.pricing-card.highlighted {
    border: 2px solid #bfa1de;
    box-shadow: 0 12px 30px rgba(191, 161, 222, 0.15);
    padding-top: 50px;
    /* Space for the badge */
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #bfa1de;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(191, 161, 222, 0.4);
    white-space: nowrap;
}

.badge-popular svg {
    width: 12px;
    height: 12px;
    fill: #ffce31;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.pricing-icon svg {
    width: 36px;
    height: 36px;
}

.highlighted .pricing-icon svg {
    stroke: #bfa1de;
}

.pricing-card:not(.highlighted) .pricing-icon svg {
    stroke: #333333;
}

.pricing-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.highlighted .pricing-title {
    color: #bfa1de;
}

.pricing-card:not(.highlighted) .pricing-title {
    color: #212121;
}

.pricing-subtitle {
    font-size: 13px;
    color: #666666;
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 14px;
    line-height: 1.4;
}

.feature-icon {
    min-width: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1px;
}

.feature-icon svg {
    width: 10px;
    height: 10px;
}

.feature-icon.green {
    background-color: #eaf5ee;
}

.feature-icon.green svg {
    stroke: #4ba674;
    stroke-width: 3;
}

.feature-icon.purple {
    background-color: #f6f1fc;
}

.feature-icon.purple svg {
    stroke: #bfa1de;
    stroke-width: 3;
}

.feature-icon.grey {
    background-color: #f0f0f0;
}

.feature-icon.grey svg {
    stroke: #888888;
    stroke-width: 3;
}

.divider {
    border: 0;
    border-top: 1px dashed #e6e6e6;
    margin: 16px 0;
}

.price-box {
    background-color: #faf7f4;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
}

.price-box .old-price {
    font-size: 13px;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-box .current-price {
    font-size: 32px;
    font-weight: 800;
}

.highlighted .current-price {
    color: #296d4c;
}

.pricing-card:not(.highlighted) .current-price {
    color: #212121;
}

.price-box .price-note {
    font-size: 11px;
    color: #777777;
    margin-top: 6px;
}

.btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    transition: all 0.2s ease;
}

.btn-green {
    background-color: #2d6b4f;
    color: white;
    box-shadow: 0 4px 8px rgba(45, 107, 79, 0.2);
}

.btn-green:hover {
    opacity: 0.9;
}

.btn-grey {
    background-color: #f5f2ed;
    color: #444444;
    border: 1px solid #e2dbd1;
}

.btn-grey:hover {
    background-color: #ebe7e0;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 11px;
    color: #666666;
}

.security-note svg {
    width: 12px;
    height: 12px;
    stroke: #4ba674;
}

/* Reasons Section */
.reasons-section {
    background-color: #f6f3eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 40px 20px;
}

.reasons-headline {
    font-size: 28px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 8px;
    text-align: center;
}

.reasons-headline .text-purple {
    color: #bfa1de;
}

.reasons-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
    width: 100%;
}

.reason-card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #efefef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.reason-icon {
    min-width: 36px;
    width: 36px;
    height: 36px;
    background-color: #f1eafd;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason-icon svg {
    width: 18px;
    height: 18px;
    stroke: #bfa1de;
}

.reason-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reason-text h3 {
    font-size: 17px;
    font-weight: 800;
    color: #212121;
}

.reason-text p {
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    line-height: 1.4;
}

/* Question Section */
.question-section {
    background-color: #f6f3eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 80px 20px;
    text-align: center;
}

.question-headline {
    font-size: 24px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 30px;
}

.question-headline .text-purple {
    color: #bfa1de;
}

.steps-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    margin-bottom: 40px;
    max-width: 600px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-item img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    margin-bottom: 8px;
}

.step-item span {
    font-size: 18px;
    font-weight: 800;
    color: #bfa1de;
    margin-bottom: 4px;
}

.answer-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.answer-text {
    font-size: 28px;
    font-weight: 800;
    color: #212121;
}

.answer-badge {
    background-color: #eb4444;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    transform: rotate(-3deg);
    display: inline-block;
    letter-spacing: 1px;
}

.method-description {
    font-size: 18px;
    font-weight: 400;
    color: #444444;
    line-height: 1.6;
    max-width: 600px;
}

.method-description strong {
    font-weight: 700;
    color: #111111;
}

.method-description p {
    margin-bottom: 12px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f6f3eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    overflow: hidden;
}

.testimonials-headline {
    font-size: 30px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 8px;
    text-align: center;
}

.testimonials-headline .text-purple {
    color: #bfa1de;
}

.testimonials-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    width: 100%;
}

.carousel-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 20px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    min-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.testimonial-stars svg {
    width: 12px;
    height: 12px;
    fill: #ffbc00;
    color: #ffbc00;
}

.testimonial-stars svg.empty {
    fill: transparent;
    stroke: #d1d1d1;
    stroke-width: 2;
}

.testimonial-text {
    font-size: 13px;
    color: #444444;
    line-height: 1.5;
    margin-bottom: 12px;
}

.testimonial-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #888888;
    font-weight: 500;
}

.action-like {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.action-like svg {
    width: 12px;
    height: 12px;
    stroke: #888888;
}

.testimonial-reply {
    margin-top: 16px;
    border-left: 2px solid #f0f0f0;
    padding-left: 12px;
    margin-left: 18px;
    display: flex;
    flex-direction: column;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
    outline: none;
}

.nav-btn:hover {
    background-color: #fcfcfc;
}

.nav-btn.left {
    left: -20px;
}

.nav-btn.right {
    right: -20px;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #212121;
}

@media (max-width: 1040px) {
    .nav-btn {
        display: none;
    }

    .carousel-wrapper {
        padding: 0;
    }

    .carousel-container {
        gap: 12px;
        padding: 10px 0 20px 0;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

/* Material Section */
.material-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.material-headline {
    font-size: 32px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 24px;
}

.material-headline .text-purple {
    color: #bfa1de;
}

.material-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
    max-width: 650px;
    margin-bottom: 40px;
}

.material-text strong {
    font-weight: 700;
    color: #111111;
}

.material-text .text-purple {
    color: #bfa1de;
    font-weight: 600;
}

.material-text .text-green {
    color: #4ba674;
    font-weight: 700;
}

.material-image {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

/* Examples Gallery Section */
.gallery-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 80px 20px;
    overflow: hidden;
}

.gallery-headline {
    font-size: 32px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 8px;
    text-align: center;
    max-width: 800px;
}

.gallery-headline .text-purple {
    color: #bfa1de;
}

.gallery-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
}

.gallery-card {
    background-color: #fdfaf7;
    border: 1px solid #ebe4dc;
    border-radius: 16px;
    padding: 14px;
    min-width: 250px;
    max-width: 250px;
    flex-shrink: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
}

.gallery-card-title {
    font-size: 13px;
    color: #444444;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 1040px) {
    .gallery-card {
        min-width: 260px;
        max-width: 260px;
    }
}

/* Instructor Section */
.instructor-section {
    background-color: #f6f3eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
}

.instructor-eyebrow {
    font-size: 14px;
    font-weight: 800;
    color: #bfa1de;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instructor-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructor-image-container {
    position: relative;
    margin-bottom: 24px;
    border-radius: 50%;
    padding: 4px;
    background: radial-gradient(circle, rgba(191, 161, 222, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
}

.instructor-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(191, 161, 222, 0.4);
}

.instructor-name {
    font-size: 28px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 6px;
}

.instructor-title {
    font-size: 13px;
    font-weight: 600;
    color: #bfa1de;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.instructor-divider {
    width: 40px;
    height: 2px;
    background-color: #f0e6f7;
    margin-bottom: 30px;
}

.instructor-bio {
    width: 100%;
}

.instructor-bio p {
    font-size: 14px;
    line-height: 1.6;
    color: #4c4c4c;
    margin-bottom: 20px;
}

.instructor-bio p:last-child {
    margin-bottom: 0;
}

.instructor-bio strong {
    font-weight: 700;
    color: #212121;
}

.instructor-stats {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-top: 30px;
}

.stat-box {
    flex: 1;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-box.purple {
    background-color: #faf7fc;
}

.stat-box.orange {
    background-color: #faf7fc;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-box.purple .stat-number {
    color: #bfa1de;
}

.stat-box.orange .stat-number {
    color: #bfa1de;
}

.stat-label {
    font-size: 12px;
    color: #555555;
    font-weight: 500;
}

@media (max-width: 600px) {
    .instructor-card {
        padding: 30px 20px;
    }

    .instructor-stats {
        flex-direction: column;
    }

    .instructor-name {
        font-size: 24px;
    }
}

/* Guarantee Section */
.guarantee-section {
    background-color: #2d6b4f;
    /* verde forte e vibrante */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.guarantee-card {
    background-color: #faf9f6;
    /* Soft cream/white as in the image */
    border: 1px solid #e8e3dc;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.guarantee-icon-container {
    width: 60px;
    height: 60px;
    background-color: #ebf0ec;
    /* Light gray-green circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.guarantee-icon-container svg {
    width: 28px;
    height: 28px;
    stroke: #2e6243;
    /* Dark green */
    stroke-width: 2;
}

.guarantee-headline {
    font-size: 32px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 12px;
}

.guarantee-headline .text-purple {
    color: #bfa1de;
}

.guarantee-divider {
    width: 40px;
    height: 3px;
    background-color: #b4c2b7;
    border-radius: 2px;
    margin-bottom: 24px;
}

.guarantee-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
    max-width: 500px;
}

.guarantee-text strong {
    font-weight: 700;
    color: #212121;
}

.guarantee-badge {
    background-color: #bfa1de;
    /* Purple soft */
    color: #ffffff;
    /* White text */
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guarantee-badge svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    stroke-width: 2.5;
}

@media (max-width: 600px) {
    .guarantee-card {
        padding: 40px 20px;
    }

    .guarantee-headline {
        font-size: 28px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #f6f3eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
}

.faq-headline {
    font-size: 32px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 8px;
    text-align: center;
}

.faq-headline .text-purple {
    color: #bfa1de;
}

.faq-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
}

.faq-container {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #ebe4dc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    text-align: left;
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: #888888;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    background-color: #ffffff;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 300px;
}

.faq-cta {
    background-color: #2d6b4f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 10px;
    transition: opacity 0.2s;
    box-shadow: 0 8px 16px rgba(45, 107, 79, 0.2);
    text-align: center;
}

.faq-cta:hover {
    opacity: 0.9;
}

/* Footer Section */
.footer-section {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.footer-text {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
}