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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #fefefe;
}

.header-editorial {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-minimal {
    display: flex;
    gap: 2rem;
}

.nav-minimal a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.hero-content-narrow {
    text-align: left;
}

.display-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

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

.inline-cta-subtle {
    margin-top: 1.5rem;
}

.cta-link {
    color: #2a5a3c;
    text-decoration: none;
    font-size: 1.05rem;
    border-bottom: 2px solid #2a5a3c;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    border-bottom-color: #1a3a2a;
    color: #1a3a2a;
}

.hero-image {
    margin-top: 2.5rem;
    width: 100%;
}

.hero-image img,
.image-embed img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

.content-narrow {
    line-height: 1.9;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.image-embed {
    margin: 3rem 0;
}

.image-embed figcaption {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.service-story-item {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-story-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-story-item p {
    margin-bottom: 1.2rem;
}

.service-details {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a5a3c;
}

.service-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: #2a5a3c;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1a3a2a;
}

.testimonial-embed {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2a5a3c;
}

.testimonial-embed blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial-embed cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #6a6a6a;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2a5a3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.inline-cta-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f4f7f5;
    border-radius: 4px;
}

.inline-cta-box p {
    margin-bottom: 1.2rem;
}

.cta-button-inline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #2a5a3c;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button-inline:hover {
    background-color: #1a3a2a;
}

.contact-form-editorial {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 0.9rem 2.5rem;
    background-color: #2a5a3c;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a3a2a;
}

.footer-editorial {
    margin-top: 5rem;
    padding: 3rem 2rem 2rem;
    background-color: #1a1a1a;
    color: #c5c5c5;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #c5c5c5;
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2a5a3c;
    color: #fff;
}

.btn-accept:hover {
    background-color: #1a3a2a;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.services-detailed .service-detail-block {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}

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

.services-detailed h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-pricing-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: #f4f7f5;
    border-radius: 4px;
}

.price-label {
    font-size: 0.9rem;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a5a3c;
}

.price-note {
    font-size: 0.85rem;
    color: #6a6a6a;
    font-style: italic;
}

.service-includes {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-top: 1rem;
}

.service-cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #2a5a3c;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.service-cta-button:hover {
    background-color: #1a3a2a;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2a5a3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1a3a2a;
    text-decoration: underline;
}

.detail-note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.thanks-hero {
    text-align: center;
    padding: 4rem 0;
}

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

.thanks-details {
    margin: 2.5rem 0;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

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

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

.legal-content a {
    color: #2a5a3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #1a3a2a;
    text-decoration: underline;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #1a1a1a;
}

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

@media (max-width: 768px) {
    .display-title {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .nav-minimal {
        gap: 1rem;
    }

    .nav-minimal a {
        font-size: 0.85rem;
    }

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

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

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .contact-form-editorial {
        padding: 1.5rem;
    }
}