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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

.ad-disclosure {
    background-color: #f4f1ea;
    color: #6b6b6b;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #e0ddd3;
}

.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e8e5db;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a5d3a;
}

.editorial-flow {
    max-width: 100%;
}

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

.hero-image-wrap {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    background-color: #d8d5c8;
}

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

.hero-text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.hero-text-center h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

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

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.narrow-content h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
}

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

.narrow-content h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c2c2c;
}

.intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.narrow-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.narrow-content ul,
.narrow-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.narrow-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.inline-image-block {
    margin: 3rem 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background-color: #e8e5db;
}

.image-caption {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: #6b6b6b;
    font-style: italic;
    text-align: center;
}

.editorial-quote {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid #1a5d3a;
    background-color: #f7f6f2;
}

.editorial-quote p {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
}

.editorial-quote cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #6b6b6b;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.95rem 2.5rem;
    background-color: #1a5d3a;
    color: #fff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.services-reveal {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e8e5db;
}

.service-cards-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e8e5db;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-featured {
    border: 2px solid #1a5d3a;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #1a5d3a;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    z-index: 10;
}

.service-image-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8e5db;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5d3a;
    margin: 1.5rem 1.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #1a5d3a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #144d2f;
}

.form-section {
    margin-top: 4rem;
    padding: 3rem;
    background-color: #fff;
    border: 1px solid #e8e5db;
    border-radius: 6px;
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid #d0cdc0;
    border-radius: 4px;
    background-color: #fafaf8;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #1a5d3a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #144d2f;
}

.disclaimer-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

.disclaimer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.disclaimer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.references-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e5db;
}

.references-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.references-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.references-list a {
    color: #1a5d3a;
    text-decoration: none;
    word-break: break-all;
}

.references-list a:hover {
    text-decoration: underline;
}

.page-header {
    padding: 4rem 2rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #e8e5db;
}

.info-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f7f6f2;
    border-radius: 6px;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-box a {
    color: #1a5d3a;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

.cta-section-centered {
    margin: 4rem 0;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f7f6f2;
    border-radius: 6px;
}

.cta-section-centered h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section-centered p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.values-list {
    margin: 2rem 0;
}

.values-list li {
    margin-bottom: 1.5rem;
}

.values-list strong {
    color: #1a5d3a;
}

.contact-info-block {
    margin: 3rem 0;
}

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

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

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

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

.faq-section {
    margin-top: 3rem;
}

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

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-page {
    min-height: 60vh;
    padding: 5rem 2rem;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5d3a;
}

.confirmation-box {
    margin: 3rem auto;
    max-width: 600px;
    text-align: left;
}

.step-item {
    margin-bottom: 2rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.order-summary {
    margin: 3rem auto;
    max-width: 500px;
    padding: 2rem;
    background-color: #f7f6f2;
    border-radius: 6px;
    text-align: left;
}

.order-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.order-summary p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-page p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
}

.legal-page a {
    color: #1a5d3a;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.footer-minimal {
    background-color: #2c2c2c;
    color: #d0cdc0;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #d0cdc0;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #8a8a8a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    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;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #1a5d3a;
    color: #fff;
}

.btn-accept:hover {
    background-color: #144d2f;
}

.btn-reject {
    background-color: #6b6b6b;
    color: #fff;
}

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

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

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

    .narrow-content {
        padding: 0 1rem;
    }

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

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

    .intro-paragraph {
        font-size: 1.15rem;
    }

    .narrow-content p {
        font-size: 1rem;
    }

    .editorial-quote {
        padding: 1.5rem;
    }

    .editorial-quote p {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

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

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