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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fdfcfa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #88c0d0;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #4A7C59;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #3d6449;
}

.btn-cookie-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

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

.ad-disclosure {
    background-color: #f4f1eb;
    padding: 0.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #d4cfc4;
}

.ad-disclosure span {
    font-size: 0.875rem;
    color: #5a5a5a;
}

.header-editorial {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #4A7C59;
}

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

.story-flow {
    background-color: #fdfcfa;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e3d9;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.content-narrow h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-narrow h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-narrow h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.inline-image {
    margin: 2.5rem 0;
    width: 100%;
    background-color: #e8e3d9;
}

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

.story-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #4A7C59;
    border-left: 4px solid #4A7C59;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    line-height: 1.7;
}

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

.btn-text-link {
    color: #4A7C59;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 2px solid #4A7C59;
    padding-bottom: 0.25rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-text-link:hover {
    color: #3d6449;
    border-color: #3d6449;
}

.services-preview {
    margin: 3rem 0;
}

.section-intro {
    font-size: 1.125rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.service-card-editorial {
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card-editorial img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e8e3d9;
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    color: #2c3e50;
}

.service-card-editorial p {
    margin: 0 1.5rem 1rem 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-card-editorial .price {
    font-weight: 700;
    color: #4A7C59;
    font-size: 1.25rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #4A7C59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #3d6449;
}

.disclaimer-section {
    background-color: #f9f7f4;
    padding: 2rem;
    border-left: 4px solid #d4a373;
    margin: 3rem 0;
}

.disclaimer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0;
}

.form-section-editorial {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #f9f7f4;
}

.form-section-editorial h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-section-editorial p {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    color: #5a5a5a;
}

.contact-form-editorial {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #d4cfc4;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #4A7C59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d6449;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.9375rem;
    color: #b0b8c1;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #b0b8c1;
}

.legal-content {
    background-color: #ffffff;
    padding: 3rem 2rem;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

.updated-date {
    font-size: 0.9375rem;
    color: #7a7a7a;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info {
    margin: 2rem 0;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-detail .note {
    font-size: 0.9375rem;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.thanks-icon {
    margin: 2rem auto;
    width: 80px;
    height: 80px;
}

.service-confirmation {
    background-color: #f0f8f4;
    border: 1px solid #4A7C59;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.service-confirmation p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.next-steps {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: left;
}

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

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin-bottom: 1rem;
}

.next-steps a {
    color: #4A7C59;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.next-steps a:hover {
    color: #3d6449;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-text-overlay h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content-narrow h1 {
        font-size: 2rem;
    }

    .content-narrow h2 {
        font-size: 1.5rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}