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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5f3f;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.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;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #1f4429;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.editorial-layout {
    background-color: #ffffff;
}

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

.story-header {
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 2.5rem;
    background-color: #e8f3ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-intro {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-section {
    margin-bottom: 3.5rem;
}

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

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

.inline-image-wrapper {
    margin: 2.5rem 0;
    background-color: #e8f3ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d5f3f;
    border-left: 4px solid #2d5f3f;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    line-height: 1.6;
}

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

.cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #1f4429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.service-card-editorial {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    background-color: #d4e7dc;
    object-fit: cover;
}

.service-card-editorial h3 {
    font-size: 1.6rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-editorial p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1.5rem 0;
}

.select-service-btn {
    padding: 0.8rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1f4429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.testimonial-block {
    background-color: #f9f9f9;
    border-left: 4px solid #88c9a8;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.form-section-editorial {
    background-color: #f5f9f7;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.form-heading {
    font-size: 2rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #d4e7dc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #1f4429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.disclaimer-section {
    background-color: #fff8e1;
    border: 1px solid #f0e4b8;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 3rem 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    background-color: #f9f9f9;
    padding: 1.8rem;
    border-radius: 6px;
    border-left: 4px solid #2d5f3f;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2a2a2a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block {
    background-color: #f5f9f7;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

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

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

.thanks-container {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 2.5rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.service-confirmation {
    margin: 1.5rem 0;
}

.selected-service-display {
    font-size: 1.1rem;
    color: #555;
    padding: 1rem;
    background-color: #f5f9f7;
    border-radius: 6px;
    display: inline-block;
}

.thanks-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1f4429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2d5f3f;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.thanks-contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f5f9f7;
    border-radius: 6px;
    display: inline-block;
}

.thanks-contact-info p {
    margin: 0.5rem 0;
    color: #4a4a4a;
}

.legal-content {
    max-width: 800px;
}

.legal-date {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #2d5f3f;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.legal-section p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #2d5f3f;
    text-decoration: underline;
}

.main-footer {
    background-color: #2a2a2a;
    color: #d4d4d4;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

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

.footer-section p,
.footer-section li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b4b4b4;
}

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

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

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

.footer-section a:hover {
    color: #88c9a8;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

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

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

    .ad-disclosure {
        margin-top: 1rem;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-intro {
        font-size: 1.1rem;
    }

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

    .narrative-text {
        font-size: 1rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

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