* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0dcd5;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.editorial-flow {
    max-width: 100%;
}

.story-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
}

.story-hero h1 {
    max-width: 800px;
    margin: 40px auto 20px;
    padding: 0 30px;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    color: var(--text-dark);
}

.story-intro {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 30px;
    font-size: 22px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.story-content {
    padding: 60px 30px;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
}

.story-content p {
    margin-bottom: 28px;
    font-size: 19px;
    line-height: 1.8;
}

.story-content h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--primary-color);
}

.story-content h3 {
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--secondary-color);
}

.inline-image {
    margin: 50px 0;
    background-color: var(--bg-light);
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.trust-marker {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

.trust-marker p {
    margin: 0;
    font-size: 17px;
}

.trust-marker a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.testimonial-inline {
    margin: 45px 0;
    padding: 35px 40px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.testimonial-inline blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.ingredient-section {
    margin: 45px 0;
    padding: 35px;
    background-color: var(--bg-light);
}

.ingredient-list {
    list-style: none;
}

.ingredient-list li {
    margin-bottom: 18px;
    font-size: 17px;
    padding-left: 25px;
    position: relative;
}

.ingredient-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.ingredient-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    font-weight: bold;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #234a3d;
    cursor: pointer;
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    cursor: pointer;
}

.solutions-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.solutions-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 19px;
    color: var(--text-light);
}

.solution-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.solution-card {
    background-color: var(--bg-white);
    border-radius: 5px;
    overflow: hidden;
    flex: 1 1 350px;
    max-width: 380px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.solution-card.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
}

.solution-card img {
    width: 100%;
    height: 240px;
}

.solution-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: var(--primary-color);
}

.solution-card p {
    padding: 0 25px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
    flex-grow: 1;
}

.solution-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 25px;
}

.solution-benefits span {
    background-color: var(--bg-light);
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 15px;
    font-family: 'Arial', sans-serif;
}

.price-reveal {
    padding: 15px 25px;
    text-align: center;
    background-color: var(--bg-light);
}

.price-label {
    display: block;
    font-size: 15px;
    text-decoration: line-through;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-main {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
}

.select-service {
    width: calc(100% - 50px);
    margin: 20px 25px 25px;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #234a3d;
    cursor: pointer;
}

.testimonials-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 5px;
    flex: 1 1 320px;
    max-width: 380px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
}

.form-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
    max-width: 700px;
    margin: 0 auto;
}

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.editorial-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.service-display {
    padding: 12px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: var(--text-light);
}

.service-display.selected {
    color: var(--primary-color);
    font-weight: bold;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    font-weight: bold;
    border-radius: 3px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #234a3d;
    cursor: pointer;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: var(--bg-light);
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

.references-section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.references-list {
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1 1 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    color: #b8b8b8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #b8b8b8;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
}

.footer-bottom p {
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 500px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.85;
    cursor: pointer;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.reject {
    background-color: #6a6a6a;
    color: var(--bg-white);
}

.page-header {
    padding: 80px 40px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-intro {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
}

.value-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.value-block {
    flex: 1 1 200px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.value-block h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--secondary-color);
}

.value-block p {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.solutions-detail {
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.solution-detail-card.reverse {
    flex-direction: row-reverse;
}

.solution-detail-card.featured-detail {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 5px;
    position: relative;
}

.solution-detail-image {
    flex: 1 1 450px;
    background-color: var(--bg-light);
}

.solution-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.solution-detail-content {
    flex: 1 1 450px;
}

.solution-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
}

.solution-detail-content ul {
    margin: 15px 0 20px 25px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.contact-info-section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-block {
    flex: 1 1 250px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.contact-block h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-block p {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.contact-note {
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.contact-note a {
    color: var(--primary-color);
    font-weight: bold;
}

.impressum-section {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

.impressum-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.impressum-section p {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content p {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 20px;
    margin: 30px 0;
    border-radius: 3px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.steps-grid {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 180px;
    max-width: 220px;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 3px;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 24px;
    font-weight: bold;
    line-height: 50px;
    border-radius: 50%;
}

.step p {
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .story-hero h1 {
        font-size: 32px;
    }

    .story-intro {
        font-size: 18px;
    }

    .story-content p {
        font-size: 17px;
    }

    .solution-cards {
        gap: 25px;
    }

    .solution-detail-card {
        flex-direction: column;
    }

    .solution-detail-card.reverse {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}