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

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

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    width: 100%;
    margin-bottom: 60px;
}

.hero-image-bg {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-color: #d4d4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

.story-section,
.insight-section,
.services-preview,
.form-section,
.testimonial-section,
.final-cta,
.values-section,
.team-section,
.approach-section,
.cta-section,
.services-detailed,
.additional-info,
.contact-info-section,
.contact-form-section,
.faq-section,
.thanks-section {
    margin-bottom: 80px;
}

.story-section h2,
.insight-section h3,
.services-preview h3,
.form-section h3,
.final-cta h3,
.values-section h3,
.team-section h3,
.approach-section h3,
.cta-section h3,
.additional-info h3,
.contact-info-section h3,
.contact-form-section h3,
.faq-section h3,
.thanks-section h1 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: normal;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-section p,
.insight-section p,
.services-preview p,
.form-section p,
.final-cta p,
.values-section p,
.team-section p,
.approach-section p,
.cta-section p,
.additional-info p,
.contact-info-section p,
.contact-form-section p,
.faq-section p,
.thanks-section p {
    margin-bottom: 22px;
}

.inline-image-container {
    margin: 40px 0;
    background-color: #f0f0f0;
}

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

.benefit-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 0;
}

.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h4 {
    font-size: 24px;
    margin: 20px 25px 10px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    color: #555;
}

.price-tag {
    display: block;
    margin: 0 25px 25px;
    font-size: 20px;
    font-weight: bold;
    color: #2a5934;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 16px 40px;
    font-size: 17px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background-color: #2a5934;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f4226;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2a5934;
    border: 2px solid #2a5934;
}

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

.btn-submit {
    background-color: #2a5934;
    color: #ffffff;
    width: 100%;
}

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

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

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

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

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

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

.testimonial-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.testimonial {
    text-align: center;
    font-style: italic;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.final-cta,
.cta-section {
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 30px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2a5934;
    padding: 25px 40px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c2c2c;
    margin: 0;
}

.cookie-content p a {
    color: #2a5934;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.btn-accept:hover {
    background-color: #1f4226;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

.page-header {
    padding: 80px 0 40px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.lead {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
}

.value-item p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 0;
}

.process-list {
    margin-top: 30px;
    padding-left: 30px;
}

.process-list li {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.process-list li strong {
    color: #1a1a1a;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.service-detail-content p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #2a5934;
    margin-top: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 40px;
}

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

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 15px;
    color: #777;
    font-style: italic;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0;
}

.thanks-content {
    text-align: center;
    padding: 60px 0;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #2a5934;
}

.thanks-details {
    margin: 40px 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.thanks-info {
    text-align: left;
    margin: 60px 0;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.next-steps {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-contact {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #2a5934;
}

.thanks-contact p {
    margin-bottom: 8px;
}

.legal-content {
    margin-top: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-content p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-content a {
    color: #2a5934;
    text-decoration: underline;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .content-narrow {
        padding: 0 20px;
    }

    .story-section h2,
    .insight-section h3,
    .services-preview h3,
    .form-section h3,
    .final-cta h3 {
        font-size: 28px;
    }

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

    .footer-content {
        flex-direction: column;
        padding: 0 20px;
    }

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

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

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

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