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

:root {
    --primary-color: #2c5f4d;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #faf8f5;
    --bg-cream: #f5f1eb;
    --border-color: #e0ddd7;
    --white: #ffffff;
    --success-green: #4a7c59;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.nav-ad-label {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: var(--text-light);
    background-color: var(--bg-cream);
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: auto;
    margin-right: 30px;
}

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

.nav-menu a {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

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

.hero-image-wrapper {
    margin-bottom: 40px;
    background-color: var(--bg-cream);
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-content-narrow h1 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
    color: var(--text-dark);
}

.lead-text {
    font-size: 22px;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 30px;
}

.content-narrow {
    font-size: 19px;
    line-height: 1.8;
}

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-dark);
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.content-narrow p {
    margin-bottom: 24px;
}

.inline-image-section {
    margin: 45px 0;
    background-color: var(--bg-cream);
    border-radius: 4px;
    overflow: hidden;
}

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

.image-caption {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    padding: 15px 20px;
    background-color: var(--bg-cream);
    margin: 0;
}

.content-list {
    margin: 25px 0 25px 30px;
    list-style-position: outside;
}

.content-list li {
    margin-bottom: 12px;
    padding-left: 8px;
}

blockquote.testimonial-inline {
    margin: 40px 0;
    padding: 30px 35px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
}

blockquote.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.7;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #234a3c;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--border-color);
    border-color: var(--text-light);
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.link-arrow:hover {
    opacity: 0.7;
}

.disclaimer-box {
    margin: 50px 0;
    padding: 25px 30px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
}

.disclaimer-box strong {
    color: var(--text-dark);
}

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

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

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

.service-card-editorial h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.service-card-editorial .price {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.form-section-editorial {
    margin: 60px 0;
    padding: 45px 40px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.form-section-editorial h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

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

.editorial-form label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.editorial-form input[type="text"],
.editorial-form input[type="email"],
.editorial-form select,
.editorial-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

.editorial-form textarea {
    resize: vertical;
}

.editorial-form button[type="submit"] {
    margin-top: 10px;
}

.final-cta {
    margin: 50px 0;
    text-align: center;
    font-size: 18px;
}

.final-cta a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.final-cta a:hover {
    opacity: 0.7;
}

.page-header-narrow {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.page-header-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 400;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-price {
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 25px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    padding: 8px 12px;
    border-radius: 3px;
    display: inline-block;
}

.additional-contact-info {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.thanks-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 48px;
    font-weight: 700;
}

.thanks-details {
    margin: 40px 0;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.thanks-next-steps {
    text-align: left;
    margin: 50px 0;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 30px;
}

.thanks-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.thanks-support {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--bg-cream);
    border-radius: 4px;
}

.thanks-support a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.thanks-support a:hover {
    opacity: 0.7;
}

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

.legal-date {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.legal-list {
    margin: 20px 0 20px 30px;
    list-style-position: outside;
}

.legal-list li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.cookies-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-cream);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

.main-footer {
    background-color: var(--bg-cream);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.footer-column p,
.footer-column ul {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.references-list {
    font-size: 12px;
    line-height: 1.7;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    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 {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-basis: 100%;
        margin-top: 15px;
        gap: 20px;
    }

    .nav-ad-label {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .editorial-container {
        padding: 40px 20px;
    }

    .hero-content-narrow h1 {
        font-size: 34px;
    }

    .lead-text {
        font-size: 20px;
    }

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

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

    .content-narrow h3 {
        font-size: 22px;
    }

    .form-section-editorial {
        padding: 30px 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
}
