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

:root {
    --primary-color: #2c2c2c;
    --accent-color: #8b6f47;
    --text-color: #333;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --border-color: #e0ddd8;
    --link-color: #6b5638;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

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

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

.brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

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

.story-header {
    margin-bottom: 3rem;
}

.header-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    object-fit: cover;
}

.header-text {
    max-width: 800px;
    margin: 2.5rem auto 0;
    padding: 0 2rem;
    text-align: center;
}

.story-header.simple .header-text {
    margin-top: 4rem;
}

.lead {
    font-size: 1.4rem;
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-intro,
.story-section {
    margin-bottom: 4rem;
}

.opening-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visual-break {
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.visual-break img {
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
}

.inline-cta {
    margin: 2.5rem 0;
}

.inline-cta.centered {
    text-align: center;
}

.cta-link {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    font-weight: 600;
}

.cta-link:hover {
    border-bottom-color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

blockquote.testimonial-inline,
blockquote.testimonial-featured {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

blockquote.testimonial-featured {
    padding: 2.5rem;
    font-size: 1.3rem;
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--accent-color);
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

.feature-highlight,
.services-reveal {
    margin: 4rem 0;
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #555;
    line-height: 1.6;
}

.service-card,
.service-detail-card {
    margin-bottom: 2rem;
    padding: 1.8rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-header h3,
.service-header h2 {
    margin: 0;
    font-size: 1.4rem;
}

.price,
.price-tag {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-card p,
.service-body p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-body h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-body ul {
    margin-bottom: 1.5rem;
}

.service-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2rem;
}

.step strong {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step p {
    margin: 0;
    color: #555;
}

.testimonial-section {
    margin: 5rem 0;
    background-color: var(--light-bg);
    padding: 3rem 0;
}

.form-section {
    margin: 5rem 0;
    padding: 3rem 0;
    background-color: var(--white);
}

.form-intro {
    margin-bottom: 2rem;
    color: #555;
}

.editorial-form {
    margin-top: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.submit-button {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-color);
}

.final-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.closing-line {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    color: var(--primary-color);
}

.contact-info-section {
    margin: 4rem 0;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-detail a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.thanks-section {
    margin: 5rem 0;
}

.thanks-content {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.next-steps {
    margin: 2rem 0;
    color: #666;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.additional-info {
    margin-top: 4rem;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.info-step strong {
    display: block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-step p {
    margin: 0;
    color: #555;
}

.legal-page .legal-content {
    margin: 3rem 0;
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: #888;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 0.95rem;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column p {
    font-size: 0.95rem;
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #444;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px 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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .narrow-column {
        padding: 0 1.5rem;
    }

    .opening-paragraph {
        font-size: 1.1rem;
    }

    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .thanks-actions {
        width: 100%;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
