* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.logo-img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.main-headline {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.main-headline .highlight {
    display: block;
    font-size: 32px;
    color: #4CAF50;
    margin-top: 10px;
}

.description {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.challenge-dates {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.date-box {
    background: #FF9800;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
}

.date-subtitle {
    font-size: 13px;
    color: #666;
}

.cta-button {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 25px;
    display: block;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #45a049;
}

.cta-button.orange {
    background: #FF9800;
}

.cta-button.orange:hover {
    background: #f57c00;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.trust-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
}

/* Benefits Section */
.benefits {
    background: #2E7D32;
    padding: 40px 20px;
    text-align: center;
}

.benefits .section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #fff;
}

.section-title .orange {
    color: #FF9800;
}

.section-title.white {
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-box p {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.feeling-box {
    background: #FF9800;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 16px;
}

.feeling-subtitle {
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
}

/* Before/After Section */
.before-after {
    background: #2E7D32;
    padding: 40px 20px;
    text-align: center;
}

.comparison-image-container {
    text-align: center;
}

.comparison-labels {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.label-before,
.label-after {
    color: #fff;
}

.comparison-image-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.comparison-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.comparison-text {
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

/* Philosophy Section */
.philosophy {
    background: #fff;
    padding: 40px 20px;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.section-title .green {
    color: #4CAF50;
}

.philosophy-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.key-statement {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
    text-align: center;
    margin: 25px 0;
    line-height: 1.5;
}

.warning-box {
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.warning-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-icon svg {
    width: 24px;
    height: 24px;
}

.warning-content {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* What You Get Section */
.what-you-get {
    background: #f5f5f5;
    padding: 40px 20px;
}

.intro-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.benefits-list {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.summary-text {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

/* Who Is For Section */
.who-is-for {
    background: #fff;
    padding: 40px 20px;
}

.subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.criterion-box {
    background: #f5f5f5;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.criterion-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.criterion-icon svg {
    width: 24px;
    height: 24px;
}

.criterion-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.conclusion-box {
    background: #E8F5E9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.conclusion-box p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Why It Works Section */
.why-works {
    background: #2E7D32;
    padding: 40px 20px;
    text-align: center;
}

.why-text {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.result-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon svg {
    width: 16px;
    height: 16px;
}

.result-box p {
    color: #fff;
    font-size: 13px;
}

.secret-box {
    background: rgba(139, 195, 74, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.secret-box p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

.secret-box .orange {
    color: #FF9800;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 40px 20px;
}

.testimonials-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
}

.testimonials-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-item {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* About Section */
.about {
    background: #f5f5f5;
    padding: 40px 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.about-text strong {
    color: #2E7D32;
    font-weight: bold;
}

.quote-box {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon svg {
    width: 40px;
    height: 40px;
}

.quote-box p {
    font-size: 14px;
    color: #666;
    font-style: italic;
    padding-left: 30px;
    margin: 0;
}

.instagram-proof {
    margin-bottom: 30px;
    text-align: center;
}

.instagram-proof img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.instagram-proof p {
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.about-image {
    width: 100%;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing {
    background: #2E7D32;
    padding: 40px 20px;
    text-align: center;
}

.pricing-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.current-price {
    font-size: 48px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
}

.payment-type {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
    margin-bottom: 20px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.payment-item:nth-child(4),
.payment-item:nth-child(5) {
    grid-column: span 1;
}

.payment-item:nth-child(4) {
    grid-column: 1;
}

.payment-item:nth-child(5) {
    grid-column: 2;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #333;
}

.payment-icon {
    width: 36px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon svg {
    width: 24px;
    height: 18px;
}

.guarantee {
    background: #E8F5E9;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #2E7D32;
    font-weight: 500;
    margin-top: 20px;
}

.guarantee-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 40px 20px;
}

.faq-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.faq-list {
    margin-bottom: 30px;
}

.faq-item {
    background: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.faq-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.faq-arrow svg {
    width: 16px;
    height: 16px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: #2E7D32;
    padding: 50px 20px;
    text-align: center;
}

.final-cta-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (min-width: 480px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        padding: 40px;
    }
    
    .main-headline {
        font-size: 32px;
    }
    
    .main-headline .highlight {
        font-size: 40px;
    }
    
    .about-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-image {
        flex: 1;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

