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

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

.ad-disclosure {
    background-color: #f0f0ed;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0dd;
}

.editorial-nav {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e2;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: #5c5c5c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.article-header {
    margin-bottom: 60px;
}

.header-image {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e8e5;
}

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

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #5c5c5c;
    font-style: italic;
}

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

.content-block p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    line-height: 1.9;
}

.content-block h2 {
    font-size: 2rem;
    margin: 50px 0 25px;
    font-weight: 600;
    line-height: 1.3;
}

.inline-image {
    margin: 50px 0;
    background-color: #e8e8e5;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 0.95rem;
    color: #7c7c7c;
    font-style: italic;
    background-color: #f5f5f3;
}

.services-inline {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: #f9f9f7;
    border-left: 3px solid #2c2c2c;
}

.services-inline h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.service-card-editorial {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e5e5e2;
}

.service-card-editorial:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-card-editorial h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.service-card-editorial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4c4c4c;
}

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

.duration {
    font-size: 0.95rem;
    color: #6c6c6c;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.cta-inline {
    background-color: #2c2c2c;
    color: #fff;
    padding: 12px 30px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #1c1c1c;
}

.testimonial-editorial {
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
    border-left: 4px solid #2c2c2c;
}

.testimonial-editorial blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: #3c3c3c;
}

.testimonial-editorial cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    color: #7c7c7c;
}

.form-section-editorial {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: #fff;
    border: 1px solid #e5e5e2;
}

.form-section-editorial h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-section-editorial > p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #5c5c5c;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #3c3c3c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #d5d5d2;
    background-color: #fafaf8;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s;
}

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

.submit-button {
    background-color: #2c2c2c;
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1c1c1c;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #7c7c7c;
    padding: 25px;
    background-color: #f5f5f3;
    border-left: 3px solid #d5d5d2;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #d5d5d2;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #d5d5d2;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #4c4c4c;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #9c9c9c;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c2c2c;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3c3c3c;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #2c2c2c;
    color: #fff;
}

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

.cookie-reject {
    background-color: #e5e5e2;
    color: #2c2c2c;
}

.cookie-reject:hover {
    background-color: #d5d5d2;
}

.service-selected {
    background-color: #e8f4e8;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid #2c2c2c;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.15rem;
    }

    .content-block p {
        font-size: 1.05rem;
    }

    .content-block h2 {
        font-size: 1.6rem;
    }

    .services-inline {
        padding: 30px 20px;
    }

    .service-card-editorial h3 {
        font-size: 1.3rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 0.85rem;
    }
}