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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #555555;
    --background-light: #f9f7f4;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4a7c59;
}

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.editorial-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 2rem;
}

.story-section {
    padding: 4rem 0;
}

.story-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.story-section p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-dark);
}

.story-section li {
    margin-bottom: 0.8rem;
}

.visual-break {
    padding: 3rem 0;
}

.full-width-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.image-caption {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

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

.services-preview {
    background-color: var(--background-light);
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.service-card {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.testimonial-inline {
    background-color: var(--background-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2.5rem 0;
}

.testimonial-inline blockquote {
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-inline p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-section {
    background-color: var(--background-light);
    padding: 4rem 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--background-white);
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: var(--primary-color);
}

.final-cta {
    margin: 3rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

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

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

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

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

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
    transition: opacity 0.3s ease;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

.values-section {
    background-color: var(--background-light);
    padding: 4rem 0;
}

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

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

.value-item p {
    color: var(--text-dark);
}

.services-detailed {
    padding: 2rem 0;
}

.service-detail {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.contact-info-section {
    padding: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

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

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.map-placeholder {
    padding: 3rem 0;
}

.map-box {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.map-box p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

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

.thanks-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-content {
    padding: 2rem 0 4rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.6rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

    .lead-text {
        font-size: 1.2rem;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .service-cards {
        padding: 0 1.5rem;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    body {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .contact-grid {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-item {
        flex: 1;
    }
}
