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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.editorial-content {
    background-color: #ffffff;
}

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

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 40px 40px;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.hero-subtext {
    font-size: 20px;
    margin-top: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-style: italic;
}

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

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    text-align: justify;
}

.drop-cap::first-letter {
    font-size: 72px;
    line-height: 60px;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
    color: #2c3e50;
    font-weight: 700;
}

.story-intro h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 500;
}

.inline-image-block {
    margin: 45px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #e9ecef;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: #6c757d;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

.insight-quote {
    border-left: 4px solid #007bff;
    padding: 25px 30px;
    margin: 40px 0;
    background-color: #f8f9fa;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.insight-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    color: #6c757d;
}

.highlighted-section {
    background-color: #fff3cd;
    padding: 30px;
    margin: 45px 0;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.highlighted-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #856404;
}

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

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

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.citation {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    vertical-align: super;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #0056b3;
    text-decoration: underline;
}

.inline-cta {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin: 30px 0;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #0056b3;
}

.testimonial-inline {
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
    padding: 30px 0;
    margin: 45px 0;
}

.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-style: normal;
    color: #6c757d;
    font-size: 16px;
}

.services-reveal {
    background-color: #f8f9fa;
    padding: 50px 40px;
    margin: 60px -30px 50px;
    border-radius: 8px;
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 45px;
    color: #495057;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.service-card-editorial h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card-editorial p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.composition {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.composition strong {
    display: block;
    margin-bottom: 8px;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.price {
    font-size: 32px;
    color: #28a745;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.price-detail {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

.form-section {
    background-color: #ffffff;
    padding: 45px 35px;
    margin: 50px -30px 40px;
    border: 2px solid #007bff;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.form-section p {
    margin-bottom: 30px;
    font-size: 17px;
}

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

.editorial-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

.editorial-form input:focus,
.editorial-form select:focus,
.editorial-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    background-color: #28a745;
    color: #ffffff;
    padding: 15px 45px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    padding: 25px;
    margin: 45px 0;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #856404;
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
}

.references-section {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #dee2e6;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.references-list {
    padding-left: 20px;
    font-size: 14px;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 35px auto 0;
    padding-top: 25px;
    border-top: 1px solid #495057;
    text-align: center;
    font-size: 13px;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: #ffffff;
    padding: 20px;
    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;
    font-size: 14px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-content a {
    color: #61dafb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #ffffff;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #218838;
}

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

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.page-content {
    min-height: 60vh;
    background-color: #ffffff;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}

.page-intro {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.service-card {
    display: flex;
    gap: 30px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 400px;
    background-color: #e9ecef;
}

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

.service-info {
    flex: 1;
    padding: 35px;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.composition-box {
    background-color: #f8f9fa;
    padding: 18px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.composition-box strong {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.composition-box ul {
    list-style: none;
    padding-left: 0;
}

.composition-box ul li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.composition-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.price-tag {
    font-size: 36px;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cta-section {
    text-align: center;
    padding: 50px 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-section h2,
.cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #6c757d;
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.about-hero-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.about-text h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

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

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 20px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #007bff;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.email-text {
    color: #495057;
    font-weight: 500;
}

.map-placeholder {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.contact-note {
    background-color: #d1ecf1;
    padding: 25px;
    border-left: 4px solid #17a2b8;
    border-radius: 4px;
    margin-top: 40px;
}

.contact-note h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0c5460;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #0c5460;
}

.contact-note a {
    color: #0c5460;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-note a:hover {
    color: #17a2b8;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 30px;
    text-align: center;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-icon svg {
    color: #28a745;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-message p {
    margin-bottom: 20px;
}

.thanks-next-steps {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-next-steps ol {
    padding-left: 25px;
    font-size: 17px;
    line-height: 1.8;
}

.thanks-next-steps li {
    margin-bottom: 12px;
}

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

.secondary-button {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    background-color: #5a6268;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 35px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #495057;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.impressum-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

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

    .content-narrow {
        padding: 30px 20px 50px;
    }

    .story-intro h2 {
        font-size: 26px;
    }

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

    .services-reveal {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }

    .form-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 250px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-container h1 {
        font-size: 32px;
    }

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

    .cta-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}