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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

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

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

.brand-logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

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

.editorial-main {
    background: #ffffff;
}

.editorial-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #1a1a1a;
}

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

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 32px;
}

.editorial-intro {
    background: #ffffff;
}

.opening-line {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 400;
}

.narrow-column p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 24px;
}

.narrow-column h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 56px 0 24px 0;
    line-height: 1.3;
}

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

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

.callout-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 32px;
    margin: 48px 0;
    border-radius: 4px;
}

.callout-box h3 {
    margin-top: 0;
    font-size: 24px;
    color: #2c3e50;
}

.benefit-list {
    list-style: none;
    margin: 20px 0;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background: #f9f9f9;
    border-left: 3px solid #95a5a6;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
}

.services-embedded {
    background: #fafafa;
    padding: 80px 0;
}

.service-card-editorial {
    background: #ffffff;
    margin: 48px 0;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 32px;
    color: #2c3e50;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 24px 0;
    background-color: #f0f0f0;
    object-fit: cover;
}

.service-card-editorial p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-duration {
    color: #718096;
    font-size: 15px;
    margin-top: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.select-service-btn {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
}

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

.select-service-btn:active {
    transform: translateY(0);
}

.form-section-editorial {
    background: #ffffff;
    padding: 80px 0;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background: #f5f5f5;
    color: #888;
}

.submit-btn {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
    margin-top: 16px;
}

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

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.editorial-closing {
    background: #f8f9fa;
    padding: 80px 0;
}

.footer-editorial {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px 0;
}

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

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

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 32px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    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;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

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

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

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

.page-content {
    padding-top: 40px;
}

.contact-info-block {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

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

.contact-item p {
    font-size: 17px;
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
}

.cta-link {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.1s;
    margin-top: 16px;
}

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

.cta-link:active {
    transform: translateY(0);
}

.thanks-page {
    text-align: center;
    padding: 80px 32px;
}

.success-icon {
    font-size: 80px;
    color: #27ae60;
    margin: 32px 0;
}

.thanks-page .opening-line {
    margin-bottom: 24px;
}

.thanks-page p {
    font-size: 18px;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page strong {
    color: #2c3e50;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-table th,
.legal-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
}

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

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .narrow-column {
        padding: 40px 20px;
    }

    .opening-line {
        font-size: 20px;
    }

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

    .service-card-editorial {
        padding: 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}