* {
    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.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f1ed;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6b6b6b;
    border-bottom: 1px solid #e0dcd6;
}

.nav-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #2c2c2c;
}

.editorial-flow {
    min-height: calc(100vh - 300px);
}

.hero-editorial {
    margin-bottom: 80px;
}

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

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

.hero-text-centered {
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 30px 0;
    text-align: center;
}

.hero-text-centered h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.lead {
    font-size: 19px;
    line-height: 1.6;
    color: #4a4a4a;
}

.story-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px;
}

.story-narrow h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
}

.story-narrow h2:first-child {
    margin-top: 0;
}

.story-narrow p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.inline-image-block {
    margin: 50px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #e8e4df;
    object-fit: cover;
}

.caption {
    font-size: 14px;
    color: #7a7a7a;
    margin-top: 12px;
    font-style: italic;
}

.cta-inline {
    margin-top: 40px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #3b7a57;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2d5f44;
}

.services-editorial {
    padding: 60px 0;
    background-color: #f9f7f4;
}

.service-card-stack {
    margin-top: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid #e8e4df;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #3b7a57;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #3b7a57;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2d5f44;
}

.service-item-detailed {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #3b7a57;
}

.service-item-detailed h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item-detailed p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.trust-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.testimonial {
    background-color: #f9f7f4;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #3b7a57;
    border-radius: 4px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
}

.form-section {
    padding: 60px 0;
    background-color: #f4f1ed;
}

.order-form {
    margin-top: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0ccc6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b7a57;
}

.form-group input[readonly] {
    background-color: #f9f7f4;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #3b7a57;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2d5f44;
}

.info-section {
    padding: 50px 0;
    background-color: #fff9f0;
    border-top: 1px solid #f0e8d8;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a6a;
    font-style: italic;
}

.page-header {
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.contact-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-email {
    font-size: 18px;
    color: #3b7a57;
    font-weight: 500;
    user-select: all;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.legal-section h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.legal-section ul {
    margin: 15px 0 20px 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.confirmation-box {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
    border-left: 4px solid #3b7a57;
}

.confirmation-box p {
    font-size: 17px;
    color: #2d5f44;
    font-weight: 500;
}

.footer-editorial {
    background-color: #2c2c2c;
    padding: 50px 0 30px;
    margin-top: 80px;
}

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

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

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: #8a8a8a;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    padding: 25px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    color: #e0e0e0;
    font-size: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #3b7a57;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2d5f44;
}

.btn-reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text-centered h1 {
        font-size: 32px;
    }

    .story-narrow h2 {
        font-size: 26px;
    }

    .service-item {
        padding: 25px;
    }

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

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