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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.hero-text-centered {
    text-align: center;
    margin-bottom: 50px;
}

.hero-text-centered h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.subtitle {
    font-size: 22px;
    color: #666;
    font-weight: 300;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.story-intro,
.story-section,
.problem-story,
.insight-block,
.approach-detail,
.services-preview,
.testimonials-inline,
.form-section,
.disclaimer-section,
.contact-info-section,
.thanks-section,
.legal-content {
    margin-bottom: 50px;
}

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

.narrow-text p {
    margin-bottom: 24px;
    font-size: 19px;
    line-height: 1.8;
    color: #333;
}

.opening {
    font-size: 22px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.narrow-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 50px 0 28px;
    font-weight: 400;
    color: #1a1a1a;
}

.narrow-text h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 36px 0 20px;
    font-weight: 500;
    color: #2c3e50;
}

.inline-image-section {
    margin: 60px 0;
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin: 40px 0;
    background-color: #f5f5f5;
}

.service-cards-editorial {
    margin: 50px 0;
}

.service-card {
    background-color: #f9f9f9;
    padding: 32px;
    margin-bottom: 24px;
    border-left: 3px solid #2c3e50;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button,
.submit-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.cta-button:hover,
.submit-button:hover {
    background-color: #1a2633;
}

.cta-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 2px solid #2c3e50;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    margin-left: 12px;
}

.cta-button-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

blockquote {
    border-left: 4px solid #d0d0d0;
    padding-left: 28px;
    margin: 40px 0;
    font-style: italic;
    color: #555;
}

blockquote p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 12px;
}

cite {
    font-size: 16px;
    color: #777;
    font-style: normal;
    display: block;
    margin-top: 8px;
}

.editorial-form {
    margin-top: 40px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
}

.form-field {
    margin-bottom: 24px;
}

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

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.disclaimer {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    padding: 24px;
    background-color: #f5f5f5;
    border-left: 3px solid #999;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 500;
}

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

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.references ol {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
    color: #d0d0d0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.page-header-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.page-header-editorial p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.service-detail-block {
    margin-bottom: 70px;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin: 16px 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.narrow-text ul,
.narrow-text ol {
    margin: 24px 0;
    padding-left: 30px;
}

.narrow-text li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.7;
}

.note {
    font-size: 16px;
    color: #777;
    font-style: italic;
    margin-top: 16px;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 500;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: #2c3e50;
    background-color: #f5f5f5;
    padding: 8px 12px;
    display: inline-block;
}

.cta-inline {
    margin: 60px 0;
    padding: 32px;
    background-color: #f0f0f0;
    border-left: 4px solid #2c3e50;
}

.cta-inline p {
    font-size: 19px;
    line-height: 1.7;
}

.cta-inline a {
    color: #2c3e50;
    text-decoration: underline;
    font-weight: 500;
}

.thanks-content {
    text-align: left;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.lead {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 500;
}

.next-steps,
.tips-list {
    margin: 32px 0;
    padding-left: 30px;
}

.next-steps li,
.tips-list li {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.7;
}

.cta-block {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
}

.cta-block p {
    font-size: 20px;
    margin-bottom: 20px;
}

.service-info {
    padding: 24px;
    background-color: #e8f4f8;
    border-left: 4px solid #2c3e50;
    margin: 24px 0;
    font-size: 18px;
    color: #2c3e50;
}

.legal-page .narrow-text {
    max-width: 800px;
}

.last-updated {
    font-size: 15px;
    color: #777;
    font-style: italic;
    margin-top: 8px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gdpr-table th,
.gdpr-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d0d0d0;
    font-size: 16px;
}

.gdpr-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2c3e50;
}

.gdpr-table tr:nth-child(even) {
    background-color: #fafafa;
}

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

    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-text-centered h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .narrow-text h2 {
        font-size: 28px;
    }

    .narrow-text p,
    .opening {
        font-size: 17px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .editorial-form {
        padding: 24px;
    }

    .cta-button-secondary {
        margin-left: 0;
        display: block;
        text-align: center;
    }
}