/* Reset und Basis-Styling */
* {
    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: #f5f5f5;
    padding: 20px;
}

/* Artikel-Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* Artikelkopf */
.article-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
}

.ad-label {
    display: inline-block;
    background-color: #666;
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border-radius: 2px;
}

.main-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.subheadline {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    margin-left: 20px;
    color: #ccc;
}

/* Teaser */
.teaser {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #4a90e2;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

/* Bilder */
.article-image {
    margin: 30px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Einleitung */
.introduction {
    margin-bottom: 30px;
}

.introduction p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* Info-Box (Kurz-Check) */
.info-box {
    background-color: #f0f7ff;
    border: 1px solid #cce5ff;
    border-radius: 6px;
    padding: 25px;
    margin: 30px 0;
}

.info-box h2 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.disclaimer-note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #cce5ff;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Content-Blocks */
.content-block {
    margin: 35px 0;
}

.content-block h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* Produkt-Sektion */
.product-section {
    margin: 35px 0;
    padding: 25px;
    background-color: #fafafa;
    border-radius: 6px;
}

.product-section h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.product-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.product-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

/* Preis-Sektion */
.pricing-section {
    margin: 35px 0;
    padding: 25px;
    background-color: #fff9e6;
    border: 1px solid #ffe066;
    border-radius: 6px;
}

.pricing-section h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* CTA-Button */
.cta-button-container {
    text-align: center;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
    background-color: #357abd;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}

/* Testimonial */
.testimonial-section {
    margin: 35px 0;
}

.testimonial-section h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-box {
    background-color: #f8f9fa;
    border-left: 4px solid #4a90e2;
    padding: 25px;
    border-radius: 4px;
    margin-top: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    text-align: right;
    margin-bottom: 10px;
}

/* FAQ */
.faq-section {
    margin: 35px 0;
}

.faq-section h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Abschluss-Sektion */
.conclusion-section {
    margin: 35px 0;
}

.conclusion-section h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.conclusion-section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* Footer */
.article-footer {
    max-width: 800px;
    margin: 40px auto 20px;
    padding: 30px 40px;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.footer-links a:hover {
    color: #357abd;
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.footer-disclaimer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .article-container {
        padding: 20px;
    }

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

    .subheadline {
        font-size: 16px;
    }

    .article-meta {
        font-size: 12px;
        gap: 10px;
    }

    .article-meta span:not(:last-child)::after {
        margin-left: 10px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .article-footer {
        padding: 20px;
    }
}

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

    .content-block h2,
    .product-section h2,
    .pricing-section h2,
    .testimonial-section h2,
    .faq-section h2,
    .conclusion-section h2 {
        font-size: 20px;
    }

    .info-box,
    .product-section,
    .pricing-section {
        padding: 20px;
    }
}

/* Impressum Styles */
.impressum-section {
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.impressum-section:last-of-type {
    border-bottom: none;
}

.impressum-section h2 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.impressum-section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.impressum-company {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #4a90e2;
    border-radius: 4px;
}

.impressum-company h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.impressum-company p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.impressum-details {
    margin: 20px 0;
}

.impressum-details p {
    margin-bottom: 8px;
    font-size: 15px;
}

.impressum-contact {
    margin: 20px 0;
}

.impressum-contact p {
    margin-bottom: 10px;
    font-size: 16px;
}

.impressum-contact a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-contact a:hover {
    color: #357abd;
    text-decoration: underline;
}

/* Widerrufsrecht Formular Styles */
.widerruf-form {
    margin-top: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.widerruf-form p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.8;
}

.widerruf-form p:last-child {
    margin-bottom: 0;
}

