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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a2e;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a7c59;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.editorial-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-flow {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-narrative {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-image-container {
    width: 100%;
    background-color: #e8f0ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.narrative-intro h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #3d3d3d;
    font-weight: 400;
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.story-block h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.inline-image-left,
.inline-image-right {
    width: 100%;
    max-width: 500px;
    background-color: #e8f0ed;
    border-radius: 8px;
    overflow: hidden;
    margin: 15px 0;
}

.inline-image-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.inline-image-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.insight-section {
    background-color: #f8faf9;
    padding: 40px;
    border-left: 4px solid #4a7c59;
    border-radius: 4px;
}

.insight-section h2 {
    font-size: 28px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.callout-box {
    background-color: #e8f0ed;
    padding: 30px;
    margin: 30px 0;
    border-radius: 6px;
}

.callout-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 0;
}

.services-preview h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-preview > p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-image {
    width: 100%;
    background-color: #e8f0ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #1a3a2e;
    font-weight: 700;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #4a7c59;
    margin-top: 10px;
}

.cta-inline {
    padding: 12px 28px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.trust-building h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-building p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 30px;
    background-color: #f8faf9;
    border-left: 4px solid #4a7c59;
    border-radius: 4px;
}

.testimonial .quote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.testimonial .author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.benefits-reveal h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 25px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    padding: 15px 0 15px 35px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: 700;
    font-size: 20px;
}

.contact-form-section {
    background-color: #f8faf9;
    padding: 50px 40px;
    border-radius: 8px;
}

.contact-form-section h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form-section > p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 35px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.references-section {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 6px;
}

.references-section h3 {
    font-size: 20px;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.references-list {
    list-style: decimal;
    padding-left: 25px;
}

.references-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.references-list a {
    color: #4a7c59;
    text-decoration: none;
}

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

.disclaimer-section {
    background-color: #fef9e7;
    padding: 25px;
    border-left: 4px solid #d4a017;
    border-radius: 4px;
}

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

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

.page-header h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.values-section {
    margin: 40px 0;
}

.values-section h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.values-section > p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 25px;
    background-color: #f8faf9;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 22px;
    color: #1a3a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.team-section {
    margin: 40px 0;
}

.team-section h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.cta-section {
    background-color: #1a3a2e;
    padding: 50px 40px;
    text-align: center;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6849;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #4a7c59;
    text-decoration: none;
    border: 2px solid #4a7c59;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-detail.reverse {
    flex-direction: column;
}

.service-image {
    width: 100%;
    background-color: #e8f0ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content h2 {
    font-size: 28px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #4a7c59;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 22px;
    color: #1a3a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.contact-item .note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

.contact-image {
    width: 100%;
    background-color: #e8f0ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.additional-info {
    margin: 40px 0;
}

.additional-info h2 {
    font-size: 28px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.additional-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.location-info {
    margin: 40px 0;
}

.location-info h2 {
    font-size: 28px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.thanks-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.thanks-content h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a3a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.confirmation-box {
    background-color: #e8f0ed;
    padding: 30px;
    border-radius: 6px;
    margin: 25px 0;
}

.confirmation-box h2 {
    font-size: 24px;
    color: #1a3a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.service-selected {
    background-color: #f8faf9;
    padding: 20px;
    border-left: 4px solid #4a7c59;
    border-radius: 4px;
    margin: 20px 0;
}

.service-selected p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.thanks-image {
    width: 100%;
    background-color: #e8f0ed;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.legal-page h1 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a3a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    line-height: 1.4;
    color: #1a3a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 20px;
    line-height: 1.4;
    color: #2a2a2a;
    margin: 25px 0 12px 0;
    font-weight: 700;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 8px;
}

.legal-section a {
    color: #4a7c59;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #1a3a2e;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #a8d5ba;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .narrative-intro h1,
    .page-header h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .story-block h2,
    .insight-section h2,
    .services-preview h2,
    .trust-building h2,
    .benefits-reveal h2,
    .contact-form-section h2,
    .values-section h2,
    .team-section h2,
    .cta-section h2 {
        font-size: 26px;
    }

    .inline-image-left,
    .inline-image-right {
        float: none;
        max-width: 100%;
        margin: 25px 0;
    }

    .contact-form-section {
        padding: 35px 25px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .btn-submit,
    .btn-primary {
        width: 100%;
        text-align: center;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
