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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
}

.ad-disclosure {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.813rem;
    letter-spacing: 0.3px;
}

.nav-editorial {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

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

.brand {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c3e50;
}

.editorial-content {
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.06);
}

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

.header-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.header-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-text {
    padding: 60px 50px 40px;
}

.header-text h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.content-narrow {
    padding: 40px 50px;
    max-width: 720px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.188rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 1.063rem;
    color: #444;
}

.content-narrow h2 {
    font-size: 1.875rem;
    margin: 50px 0 25px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #2c3e50;
    font-weight: 600;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.visual-break {
    margin: 60px 0;
    background-color: #f5f5f5;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    padding: 20px 50px;
    font-size: 0.938rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

.testimonial {
    background: #f8f9fa;
    border-left: 4px solid #2c3e50;
    padding: 30px 35px;
    margin: 40px 0;
    font-size: 1.063rem;
    font-style: italic;
    color: #333;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 0.938rem;
    color: #666;
    font-weight: 600;
}

.services-editorial {
    background: #f9f9f9;
    padding: 60px 0;
    margin: 60px 0;
}

.service-cards-editorial {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin: 0 0 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.duration {
    font-size: 0.938rem;
    color: #777;
}

.price {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2c3e50;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.form-section {
    background: #ffffff;
    padding: 60px 0;
    margin: 60px 0;
}

.editorial-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.063rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.disclaimer-section {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 40px;
    margin: 50px 50px;
}

.disclaimer {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin: 15px 0 0;
}

.footer-editorial {
    background: #2c3e50;
    color: #ffffff;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.938rem;
    color: #b8c5d0;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #b8c5d0;
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #b8c5d0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px 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;
    font-size: 0.938rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-cookie.accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-cookie.reject {
    background: #555;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #333;
    transform: translateY(-2px);
}

.contact-info-box {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 6px;
    margin: 30px 0;
}

.contact-info-box h3 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.contact-detail {
    margin: 20px 0;
    line-height: 1.8;
}

.impressum-section {
    background: #fafafa;
    padding: 50px;
    border-radius: 8px;
    margin: 50px 0;
}

.impressum-section h2 {
    margin-top: 0;
}

.impressum-section h3 {
    font-size: 1.25rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.impressum-section h4 {
    font-size: 1.063rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #444;
    font-weight: 600;
}

.thanks-section {
    text-align: center;
    padding: 80px 50px;
}

.thanks-icon {
    margin: 0 auto 30px;
    display: inline-block;
}

.thanks-section h1 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #27ae60;
}

.service-confirmation p {
    margin: 0;
    color: #2c5e2e;
    font-size: 1.063rem;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
    padding-left: 20px;
}

.next-steps li {
    margin: 15px 0;
    font-size: 1.063rem;
    line-height: 1.7;
}

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

.cta-link-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.cta-link-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-content ul li {
    margin: 10px 0;
    line-height: 1.6;
}

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

    .nav-links {
        margin-top: 15px;
        gap: 20px;
    }

    .header-text {
        padding: 40px 25px 30px;
    }

    .header-text h1 {
        font-size: 1.875rem;
    }

    .content-narrow {
        padding: 30px 25px;
    }

    .service-cards-editorial {
        padding: 0 25px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-section {
        padding: 60px 25px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-link, .cta-link-secondary {
        width: 100%;
        max-width: 300px;
    }
}