* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

h1 {
    font-family: Georgia, serif;
    font-size: 36px;
    line-height: 1.3;
    margin: 25px 0;
    color: #111;
    font-weight: 700;
}

h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1.4;
    margin: 35px 0 20px;
    color: #111;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #333;
    font-weight: 600;
}

.advertorial-label {
    font-size: 12px;
    text-align: center;
    color: #888;
    margin-bottom: 15px;
}


.news-logo {
    text-align: center;
}

.news-logo img {
    max-width: 220px;
    height: auto;
    display: inline-block !important;
    margin: 0 auto 20px !important;
}

.meta-info {
    color: #666;
    font-size: 15px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.author-info {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.verified {
    color: #2e7d32;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* Story-driven content blocks */
.story-intro {
    background: linear-gradient(to bottom, #fafafa, #ffffff);
    padding: 25px;
    margin: 30px -10px;
    border-left: 5px solid #1976d2;
    font-size: 19px;
}

.breaking-news {
    background: #fff3e0;
    border: 2px solid #ff9800;
    padding: 20px;
    margin: 30px 0;
    position: relative;
}

.breaking-news::before {
    content: "EILMELDUNG";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ff9800;
    color: white;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: bold;
}

.personal-story {
    background: #f5f5f5;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.personal-story::before {
    content: '"';
    font-size: 60px;
    color: #ddd;
    position: absolute;
    top: -5px;
    left: 10px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Scientific credibility */
.study-box {
    background: white;
    border: 2px solid #4caf50;
    padding: 25px;
    margin: 35px 0;
    border-radius: 8px;
}

.study-box h3 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.stat-highlight {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
}

/* Testimonials that build trust */
.testimonial {
    background: white;
    border-left: 4px solid #1976d2;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 18px;
}

.testimonial-age {
    color: #666;
    font-size: 16px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

/* Ingredients list - educational */
.ingredient-box {
    background: #f8f9fa;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.ingredient-item {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 17px;
}

.ingredient-item:last-child {
    border-bottom: none;
}

.ingredient-name {
    font-weight: 600;
    color: #2e7d32;
}

/* CTA buttons - prominent but not pushy */
.cta-button {
    display: block;
    background: linear-gradient(to bottom, #66bb6a, #43a047);
    color: white;
    text-align: center;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to bottom, #5cb85c, #3d8b40);
}

.cta-text {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin: -20px 0 40px;
}

/* Warning boxes - creates urgency */
.warning-box {
    background: #ffebee;
    border-left: 5px solid #f44336;
    padding: 20px;
    margin: 35px 0;
}

.warning-box strong {
    color: #c62828;
}

/* Price presentation */
.price-reveal {
    background: linear-gradient(to bottom, #fff9c4, #ffffff);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed #fbc02d;
}

.old-price {
    font-size: 22px;
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 36px;
    font-weight: bold;
    color: #d32f2f;
    margin: 10px 0;
}

.savings {
    font-size: 20px;
    color: #388e3c;
    font-weight: 600;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    display: block;
}

.image-caption {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 20px;
    font-style: italic;
}

/* Footer disclaimer */
.disclaimer {
    font-size: 13px;
    color: #777;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    line-height: 1.5;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
}

.trust-badge {
    text-align: center;
    font-size: 14px;
}

.trust-icon {
    font-size: 32px;
    color: #4caf50;
    margin-bottom: 5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .container {
        padding: 15px;
    }

    .cta-button {
        font-size: 18px;
        padding: 18px 25px;
    }
}

/* High contrast for better readability */
strong {
    font-weight: 600;
    color: #111;
}

/* Sticky bar for mobile */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    border-top: 2px solid #4caf50;
}

.sticky-bar .cta-button {
    margin: 0;
    font-size: 18px;
}