/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Advertorial Mark */
.advertorial-mark {
    background-color: #2c5f2d;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 32px;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    padding: 40px 0 60px;
    background-color: #ffffff;
}

.main-headline {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    max-width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hero-text {
    padding-right: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    object-fit: contain;
}

/* Sticky Product Card */
.sticky-product-card {
    position: fixed;
    top: 120px;
    right: 20px;
    width: 200px;
    background-color: #ffffff;
    border: 2px solid #2c5f2d;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 998;
    display: none;
}

.sticky-product-card.show {
    display: block;
}

.sticky-card-content {
    text-align: center;
}

.sticky-product-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.sticky-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.sticky-btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
}

/* Buttons */
.btn-primary {
    background-color: #2c5f2d;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #1e4220;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 95, 45, 0.3);
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section.alt-bg {
    background-color: #f8f9fa;
}

.section-headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 30px;
    max-width: 900px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    object-fit: contain;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.section-text p {
    margin-bottom: 20px;
}

.question-list {
    list-style: none;
    margin-top: 20px;
}

.question-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.question-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 24px;
    line-height: 1;
}

.info-box {
    background-color: #e8f5e9;
    border-left: 4px solid #2c5f2d;
    padding: 20px;
    margin-top: 25px;
    border-radius: 4px;
}

.info-box p {
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.blue-box {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px;
    margin-top: 25px;
    border-radius: 4px;
}

.blue-box p {
    margin-bottom: 10px;
}

.blue-box p:last-child {
    margin-bottom: 0;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 32px;
    line-height: 1;
}

.feature-item p {
    margin: 0;
    font-size: 16px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.ingredient-item {
    text-align: center;
}

.ingredient-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ingredient-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.ingredient-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Trial Section */
.trial-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.trial-content {
    display: flex;
    gap: 40px;
    align-items: start;
}

.trial-image-before {
    flex: 0 0 300px;
    position: relative;
}

.trial-image-before img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.trial-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
}

.trial-weeks {
    flex: 1;
}

.week-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.week-item:last-child {
    border-bottom: none;
}

.week-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.week-item ul {
    list-style: none;
    margin-bottom: 20px;
}

.week-item ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.week-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.week-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.ba-item {
    text-align: center;
}

.ba-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.ba-item p {
    font-weight: 600;
    color: #2c5f2d;
    font-size: 14px;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.testimonial-author span {
    font-weight: 600;
    color: #333;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Order Section */
.order-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.order-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    object-fit: contain;
}

.order-details h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-old {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.price-new {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f2d;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 20px;
}

.how-to-use {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.how-to-use h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.how-to-use-image {
    margin-bottom: 20px;
}

.how-to-use-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.how-to-use ol {
    margin-left: 20px;
}

.how-to-use ol li {
    padding: 8px 0;
    font-size: 16px;
    color: #555;
}

.best-part {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2c5f2d;
}

.best-part h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.best-part p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4220 100%);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-box p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
}

.final-cta .btn-primary {
    background-color: white;
    color: #2c5f2d;
}

.final-cta .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2c5f2d;
}

.footer-disclosures {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 30px;
}

.footer-disclosures p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #999;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
}

/* Benefits Grid Section */
.benefits-grid-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.benefits-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.benefits-main-image {
    position: relative;
}

.benefits-main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    object-fit: contain;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.benefit-item {
    text-align: center;
}

.benefit-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c5f2d;
    margin: 0;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2c5f2d;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

/* Show floating CTA only on mobile */
@media (max-width: 968px) {
    .floating-cta.show {
        display: block;
    }
}

.floating-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.floating-price {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.floating-cta .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .section-content,
    .order-content,
    .benefits-grid-layout {
        grid-template-columns: 1fr;
    }

    .section-content.reverse {
        direction: ltr;
    }

    .main-headline {
        font-size: 32px;
    }

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

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

    .ingredients-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .trial-content {
        flex-direction: column;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .sticky-product-card {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .main-headline {
        font-size: 26px;
    }

    .section-headline {
        font-size: 24px;
    }

    .intro-text {
        font-size: 16px;
    }

    .hero-content {
        gap: 30px;
    }
}
