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

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

.ad-disclosure {
    background-color: #f4f1e8;
    color: #5a5a5a;
    font-size: 0.75rem;
    text-align: center;
    padding: 8px 15px;
    border-bottom: 1px solid #e0ddd0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.editorial-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #3a5a2a;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 6%;
    right: 6%;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-text-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 600;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    font-weight: 300;
}

.page-header-editorial {
    margin-bottom: 50px;
    padding: 40px 0;
    border-bottom: 2px solid #2d5016;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 10px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

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

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

.story-opener {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-style: italic;
}

.narrow-text p {
    margin-bottom: 22px;
    font-size: 1.1rem;
}

.narrow-text h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #2d5016;
    font-weight: 600;
}

.narrow-text h3 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #3a5a2a;
}

.inline-story-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    background-color: #4a6a3a;
    object-fit: cover;
}

.editorial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d5016;
    margin: 40px 0;
    padding: 30px 40px;
    border-left: 4px solid #2d5016;
    background-color: #f8f9f6;
}

.cta-inline {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-link-editorial {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-link-editorial:hover {
    background-color: #3f7020;
}

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

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
    margin: 50px auto 0;
}

.service-card-editorial {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #4a6a3a;
    object-fit: cover;
}

.service-card-editorial h3 {
    font-size: 1.8rem;
    color: #2d5016;
    font-weight: 600;
}

.service-card-editorial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.price-tag {
    font-size: 1.5rem;
    color: #2d5016;
    font-weight: 700;
    margin-top: 10px;
}

.select-service-btn {
    align-self: flex-start;
    padding: 12px 26px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #3f7020;
}

.contact-form-section {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f5f7f3;
}

.editorial-form {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 4px;
}

.selected-service-display {
    padding: 20px;
    background-color: #e8f0e3;
    border-left: 4px solid #2d5016;
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d2d2d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.submit-btn-editorial {
    width: 100%;
    padding: 15px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn-editorial:hover {
    background-color: #3f7020;
}

.closing-thought {
    margin: 60px 0;
}

.closing-text {
    font-size: 1.3rem;
    text-align: center;
    color: #4a4a4a;
    font-style: italic;
}

.editorial-footer {
    background-color: #2d3d1f;
    color: #e0e0e0;
    padding: 60px 6% 30px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1100px;
    margin: 40px auto;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #5a7a3a;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-content a {
    color: #2d5016;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.contact-info-block {
    background-color: #f5f7f3;
    padding: 30px;
    border-radius: 4px;
    margin: 30px 0;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f0e3;
    border-left: 4px solid #2d5016;
    margin: 30px 0;
}

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

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

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .narrow-text h2 {
        font-size: 1.6rem;
    }

    .story-opener {
        font-size: 1.2rem;
    }
}