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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-cookie {
    background-color: #fff;
    color: #1a1a1a;
}

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

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

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

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #d4d4d4;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 5%;
    max-width: 600px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

.editorial-intro .lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 36px;
    color: #1a1a1a;
    font-style: italic;
}

.editorial-intro p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3c3c3c;
}

.editorial-intro h2 {
    font-size: 32px;
    margin: 56px 0 24px 0;
    font-weight: 600;
    color: #1a1a1a;
}

.inline-figure {
    margin: 48px 0;
}

.inline-figure img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e0e0e0;
}

.inline-figure figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #777;
    font-style: italic;
    text-align: center;
}

.inline-cta-soft {
    margin: 40px 0;
    padding: 24px;
    background-color: #f5f5f5;
    border-left: 3px solid #1a1a1a;
}

.inline-cta-soft p {
    margin: 0;
}

.text-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.6;
}

.services-editorial {
    padding: 80px 5%;
    background-color: #fff;
}

.service-card-editorial {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
}

.service-card-editorial.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #d8d8d8;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 24px 0;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-select-service:hover {
    background-color: #404040;
}

.editorial-testimonials {
    background-color: #f8f8f8;
    padding: 80px 5%;
}

.testimonial-editorial {
    margin: 40px 0;
    padding-left: 24px;
    border-left: 3px solid #1a1a1a;
}

.testimonial-editorial p {
    font-size: 19px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
    font-style: italic;
}

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

.editorial-approach {
    background-color: #fff;
}

.cta-editorial-box {
    margin: 56px 0;
    padding: 48px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.cta-editorial-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-editorial-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e0e0e0;
}

.btn-primary-editorial {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-editorial:hover {
    background-color: #e0e0e0;
}

.editorial-form-section {
    background-color: #f5f5f5;
    padding: 80px 5%;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: inherit;
    color: #2c2c2c;
}

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

.form-privacy {
    margin: 32px 0;
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-privacy a {
    color: #1a1a1a;
    text-decoration: underline;
}

.btn-submit-editorial {
    padding: 16px 48px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.editorial-closing {
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    font-style: italic;
    text-align: center;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 5% 30px 5%;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-email {
    color: #b0b0b0;
}

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

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

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

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 5%;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #3c3c3c;
    margin-bottom: 20px;
}

.thanks-container .btn-back {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.thanks-container .btn-back:hover {
    background-color: #404040;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        display: none;
        border-top: 1px solid #e5e5e5;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .narrow-content {
        padding: 50px 5%;
    }

    .editorial-intro .lead-text {
        font-size: 19px;
    }

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

    .editorial-intro h2 {
        font-size: 28px;
    }

    .service-card-editorial,
    .service-card-editorial.reverse {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 60px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .cta-editorial-box {
        padding: 32px 24px;
    }

    .cta-editorial-box h3 {
        font-size: 26px;
    }

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