* {
    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: #2d3436;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2d7a4f;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-size: 15px;
    transition: color 0.2s;
}

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

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.story-header {
    margin-bottom: 48px;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    background-color: #e9ecef;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px 32px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.page-header {
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 24px;
}

.story-intro {
    margin-bottom: 56px;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.inline-image-section {
    margin: 56px 0;
    background-color: #f8f9fa;
    padding: 4px;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.image-caption {
    font-style: italic;
    color: #6c757d;
    font-size: 15px;
    padding: 0 16px 12px;
}

.story-body {
    font-size: 17px;
    line-height: 1.8;
}

.story-body h2 {
    font-size: 32px;
    margin-top: 56px;
    margin-bottom: 20px;
    color: #212529;
    font-weight: 700;
}

.story-body h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #343a40;
    font-weight: 600;
}

.story-body p {
    margin-bottom: 20px;
}

.story-body ul {
    margin: 24px 0 24px 24px;
    list-style-type: disc;
}

.story-body ul li {
    margin-bottom: 12px;
}

.story-body img {
    width: 100%;
    height: auto;
    display: block;
    margin: 48px 0;
    background-color: #f1f3f5;
}

.insight-block {
    background-color: #f1f7f4;
    padding: 32px;
    margin: 56px 0;
    border-left: 4px solid #2d7a4f;
}

.insight-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a5838;
    margin-top: 0;
}

.insight-content p {
    margin-bottom: 16px;
    font-size: 16px;
}

.insight-content a {
    color: #2d7a4f;
    text-decoration: none;
}

.insight-content a:hover {
    text-decoration: underline;
}

.solution-reveal {
    margin: 64px 0;
    padding: 40px 0;
    border-top: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
}

.solution-reveal h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #212529;
}

.solution-reveal p {
    font-size: 18px;
    margin-bottom: 20px;
}

.services-preview {
    margin: 64px 0;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #212529;
}

.services-preview > p {
    font-size: 17px;
    margin-bottom: 40px;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    margin-bottom: 40px;
    padding: 24px;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    background-color: #f8f9fa;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #212529;
    font-weight: 600;
}

.service-card-editorial p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card-editorial ul {
    margin: 16px 0 16px 20px;
    list-style-type: disc;
}

.service-card-editorial ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a4f;
    margin: 20px 0 16px;
}

.cta-inline {
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-inline:hover {
    background-color: #236340;
}

.testimonial-inline {
    margin: 64px 0;
    padding: 40px 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #2d7a4f;
}

.testimonial-inline blockquote {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: #343a40;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-style: normal;
    color: #6c757d;
}

.final-cta-section {
    margin: 72px 0;
    padding: 48px 0;
    border-top: 2px solid #dee2e6;
}

.final-cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #212529;
}

.final-cta-section p {
    font-size: 17px;
    margin-bottom: 20px;
}

.editorial-form {
    background-color: #f8f9fa;
    padding: 32px;
    margin-top: 32px;
}

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

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

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

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

.submit-btn {
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

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

.disclaimer-section {
    margin: 56px 0;
    padding: 24px;
    background-color: #fff9e6;
    border: 1px solid #ffd966;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6c5d00;
}

.references-section {
    margin: 56px 0;
    padding: 24px 0;
    border-top: 1px solid #dee2e6;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #495057;
}

.references-list {
    margin-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.references-list a {
    color: #2d7a4f;
    text-decoration: none;
}

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

.text-link {
    color: #2d7a4f;
    text-decoration: none;
    border-bottom: 1px solid #2d7a4f;
}

.text-link:hover {
    color: #236340;
    border-bottom-color: #236340;
}

.site-footer {
    background-color: #212529;
    color: #ffffff;
    padding: 56px 40px 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #343a40;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept {
    background-color: #2d7a4f;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #236340;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #6c757d;
}

.cookie-reject:hover {
    background-color: #343a40;
}

.contact-info-block {
    margin: 40px 0;
    padding: 32px;
    background-color: #f8f9fa;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d7a4f;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.cta-box {
    margin: 48px 0;
    padding: 32px;
    background-color: #f1f7f4;
    text-align: center;
    border: 2px solid #2d7a4f;
}

.cta-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a5838;
}

.cta-button {
    display: inline-block;
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #236340;
}

.legal-page .legal-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #212529;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #343a40;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
    list-style-type: disc;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.legal-page code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 14px;
    color: #e83e8c;
}

.services-list {
    margin: 40px 0;
}

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .editorial-container {
        padding: 40px 16px 60px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}