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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #4a6b3a;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #3d5a2c;
}

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

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-disclosure {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.editorial-container {
    background-color: #ffffff;
    margin: 0 auto;
}

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

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay h1 {
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.3;
    font-weight: 400;
}

.page-header-editorial {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 24px 40px;
    text-align: center;
}

.page-header-editorial h1 {
    font-size: 42px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.3;
}

.editorial-content {
    padding: 40px 24px 80px;
}

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

.intro-large {
    font-size: 26px;
    line-height: 1.5;
    color: #3a3a3a;
    margin-bottom: 32px;
    font-weight: 400;
}

.editorial-content p {
    margin-bottom: 24px;
    font-size: 19px;
    color: #3a3a3a;
}

.editorial-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #2c2c2c;
    line-height: 1.3;
}

.editorial-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.inline-image {
    margin: 48px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}

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

.inline-cta {
    text-align: center;
    margin: 56px 0;
}

.cta-inline {
    display: inline-block;
    padding: 16px 36px;
    background-color: #4a6b3a;
    color: #ffffff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #3d5a2c;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #4a6b3a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    border: 2px solid #4a6b3a;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.cta-secondary:hover {
    background-color: #4a6b3a;
    color: #ffffff;
}

.services-editorial {
    margin: 48px 0;
}

.service-card-editorial {
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.service-card-editorial h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 16px;
    color: #2d5016;
}

.service-card-editorial p {
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d5016;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service {
    padding: 12px 28px;
    background-color: #4a6b3a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #3d5a2c;
    transform: translateY(-2px);
}

.form-section-editorial {
    margin: 64px 0;
    padding: 48px;
    background-color: #f9faf8;
    border-radius: 2px;
}

.form-section-editorial h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 16px;
}

.editorial-form {
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #3a3a3a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #4a6b3a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d5a2c;
    transform: translateY(-2px);
}

.disclaimer-section {
    margin: 64px 0 0;
    padding: 32px;
    background-color: #fef9f5;
    border-left: 4px solid #d4a574;
    border-radius: 2px;
}

.disclaimer-section p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.6;
}

.service-detail-editorial {
    margin: 48px 0;
}

.service-image {
    margin-bottom: 24px;
    border-radius: 2px;
    overflow: hidden;
}

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

.process-section {
    margin: 64px 0;
    padding: 48px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.process-steps {
    margin-top: 32px;
}

.process-step {
    margin-bottom: 32px;
}

.process-step h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #2d5016;
}

.process-step p {
    font-size: 18px;
}

.contact-info-editorial {
    margin: 48px 0;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 16px;
}

.contact-block p {
    font-size: 18px;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 16px;
    color: #2d5016;
}

.contact-message {
    margin: 48px 0;
    padding: 40px;
    background-color: #f9faf8;
    border-radius: 2px;
}

.contact-message h2 {
    margin-top: 0;
}

.thanks-content {
    padding: 80px 24px;
}

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

.thanks-message h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 24px;
}

.confirmation-details {
    margin: 48px 0;
    text-align: left;
}

.service-selected {
    padding: 24px;
    background-color: #f4f7f2;
    border-radius: 4px;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.next-steps {
    margin: 48px 0;
    text-align: left;
}

.thanks-cta {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-content {
    font-size: 17px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: #2d5016;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookies-table th {
    background-color: #f4f7f2;
    font-weight: 600;
    color: #2d5016;
}

.footer-editorial {
    background-color: #2d2d2d;
    color: #d0d0d0;
    padding: 60px 24px 24px;
}

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

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

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .intro-large {
        font-size: 22px;
    }

    .editorial-content p {
        font-size: 17px;
    }

    .editorial-content h2 {
        font-size: 28px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .form-section-editorial {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .cta-secondary {
        margin-left: 0;
    }
}