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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 9999;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6849;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.nav-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 12px;
    color: #888888;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #e5e5e5;
}

.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.story-flow {
    background-color: #ffffff;
    padding: 0;
}

.hero-editorial {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    margin-bottom: 35px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.headline-large {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.subheadline {
    font-size: 20px;
    color: #5a5a5a;
    font-style: italic;
    line-height: 1.5;
}

.content-narrow {
    padding: 0;
}

.intro-graf {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #3a3a3a;
}

.inline-image-block {
    margin: 45px 0;
    background-color: #f5f5f5;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    color: #6a6a6a;
    font-style: italic;
    background-color: #f5f5f5;
}

.section-heading {
    font-size: 28px;
    margin: 45px 0 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-inline {
    margin: 35px 0;
    padding: 25px 0;
    border-top: 2px solid #4a7c59;
    border-bottom: 2px solid #4a7c59;
    text-align: center;
}

.link-cta {
    font-size: 19px;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #3d6849;
}

.service-showcase {
    margin: 50px 0;
}

.service-card-editorial {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e5e5e5;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
    background-color: #ececec;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #4a7c59;
    margin-top: 15px;
}

.testimonial-editorial {
    margin: 40px 0;
    padding: 25px 30px;
    background-color: #f9f9f7;
    border-left: 4px solid #4a7c59;
}

.testimonial-editorial p {
    font-size: 18px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.testimonial-editorial cite {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
}

.form-section {
    margin: 60px 0 50px;
    padding: 40px 35px;
    background-color: #f5f5f3;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: Georgia, serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #3d6849;
}

.closing-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.footer-editorial {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 50px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

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

.footer-section a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #3a3a3a;
    border-left: 3px solid #4a7c59;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #c0c0c0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #444444;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    text-align: center;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6849;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-disclosure {
        padding-left: 0;
        border-left: none;
        padding-top: 10px;
        border-top: 1px solid #e5e5e5;
    }

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

    .subheadline {
        font-size: 18px;
    }

    .editorial-container {
        padding: 40px 20px;
    }

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

    .footer-container {
        flex-direction: column;
    }
}