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

:root {
    --primary-color: #2c3e50;
    --accent-color: #8b4513;
    --text-color: #333;
    --bg-light: #f9f6f1;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
    --highlight-bg: #faf8f5;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    background-color: var(--bg-light);
}

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

.article-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.article-subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.article-content {
    font-size: 18px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #444;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.article-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.inline-image-section {
    margin: 40px 0;
    background-color: var(--bg-light);
    padding: 15px;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    font-style: italic;
    color: #666;
    text-align: center;
    margin: 0;
}

.content-highlight {
    background-color: var(--highlight-bg);
    border-left: 4px solid var(--accent-color);
    padding: 25px 30px;
    margin: 35px 0;
}

.content-highlight h3 {
    margin-top: 0;
    font-size: 22px;
}

.content-highlight p {
    margin-bottom: 15px;
}

.content-highlight p:last-child {
    margin-bottom: 0;
}

.services-inline {
    margin: 40px 0;
}

.service-card-editorial {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
    background-color: var(--bg-light);
}

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

.service-card-editorial h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-details {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--bg-light);
}

.service-details p {
    margin-bottom: 12px;
}

.service-details ul {
    margin: 10px 0 15px 25px;
}

.service-details li {
    margin-bottom: 8px;
}

.service-duration,
.service-price {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
}

.service-price {
    font-size: 20px;
    color: var(--accent-color);
}

.btn-select-service {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.btn-select-service.selected {
    background-color: #2c3e50;
}

.cta-inline {
    margin: 50px 0 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-top: 3px solid var(--accent-color);
}

.cta-inline h3 {
    margin-top: 0;
}

.form-section {
    margin: 50px 0;
    padding: 35px;
    background-color: var(--highlight-bg);
    border: 1px solid var(--border-color);
}

.form-section h2 {
    margin-top: 0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 35px;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.testimonials-inline {
    margin: 50px 0;
}

.testimonials-inline h2 {
    margin-top: 0;
}

.testimonial {
    border-left: 3px solid var(--accent-color);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
}

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

.testimonial cite {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.article-disclaimer {
    margin-top: 60px;
    padding: 25px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 15px;
}

.article-disclaimer h4 {
    margin-top: 0;
    font-size: 18px;
}

.editorial-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 40px 20px 40px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3a4f63;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: var(--bg-white);
    padding: 25px;
    display: none;
    z-index: 1000;
}

.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;
    margin: 0;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    min-width: 300px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.contact-info-section {
    margin: 40px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 25px;
}

.contact-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--accent-color);
}

.contact-item h3 {
    margin-top: 0;
    font-size: 22px;
}

.contact-item p {
    margin-bottom: 12px;
}

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

.no-link {
    color: var(--text-color);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.faq-section {
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.faq-item p {
    margin-bottom: 0;
}

.next-steps {
    background-color: var(--highlight-bg);
    padding: 25px;
    margin: 35px 0;
    border-left: 3px solid var(--accent-color);
}

.next-steps h3 {
    margin-top: 0;
}

.next-steps a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.next-steps a:hover {
    color: #6d3610;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .editorial-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .editorial-container {
        padding: 30px 15px;
    }

    .article-title {
        font-size: 32px;
    }

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

    .lead-paragraph {
        font-size: 19px;
    }

    .article-content {
        font-size: 17px;
    }

    .article-content h2 {
        font-size: 26px;
    }

    .article-content h3 {
        font-size: 21px;
    }

    .footer-content {
        flex-direction: column;
        padding: 0 20px;
    }

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

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}