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

html {
    scroll-behavior: smooth;
}

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

a {
    color: #2d6a4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1b4332;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1b4332;
    color: #ffffff;
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.btn-accept {
    background-color: #52b788;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #40916c;
}

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

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #ffeaa7;
}

.header-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1b4332;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links li a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

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

.editorial-main {
    background-color: #fafafa;
    padding: 0;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px 80px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.hero-editorial {
    position: relative;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 50px;
    height: 500px;
    overflow: hidden;
    background-color: #d8f3dc;
}

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

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

.story-title {
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-editorial {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #2d6a4f;
}

.page-header-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1b4332;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    color: #6c757d;
    font-style: italic;
    line-height: 1.5;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #1b4332;
    margin-bottom: 25px;
    font-weight: 600;
}

.story-intro p,
.story-body p,
.story-closing p {
    margin-bottom: 25px;
    text-align: justify;
}

.inline-image {
    margin: 50px 0;
    background-color: #d8f3dc;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
}

.inline-image img {
    width: 100%;
    height: auto;
}

.inline-image-small {
    margin: 40px auto;
    max-width: 600px;
    background-color: #d8f3dc;
}

.inline-image-small img {
    width: 100%;
    height: auto;
}

.story-body h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1b4332;
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-body h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #2d6a4f;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-inline {
    background-color: #f1faee;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #2d6a4f;
}

.cta-inline p {
    margin: 0;
    font-size: 19px;
}

.text-link {
    font-weight: 600;
    text-decoration: underline;
    color: #2d6a4f;
    cursor: pointer;
}

.text-link:hover {
    color: #1b4332;
}

.services-preview {
    margin-top: 70px;
    margin-bottom: 50px;
}

.services-preview h2 {
    font-size: 32px;
    color: #1b4332;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

.service-card-mini h3 {
    font-size: 22px;
    color: #1b4332;
    margin: 20px 20px 10px;
}

.service-card-mini p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 20px 15px;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #2d6a4f;
    margin: 10px 20px 20px;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d6a4f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.story-testimonial {
    margin: 60px 0;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-left: 5px solid #52b788;
}

.story-testimonial blockquote {
    margin: 0;
}

.story-testimonial p {
    font-size: 20px;
    font-style: italic;
    color: #495057;
    margin-bottom: 15px;
    text-align: left;
}

.story-testimonial cite {
    font-size: 17px;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

.story-closing {
    margin-top: 70px;
}

.story-closing h2 {
    font-size: 32px;
    color: #1b4332;
    margin-bottom: 25px;
}

.form-editorial {
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: #2d6a4f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.disclaimer-section {
    margin-top: 70px;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
    margin: 0;
    text-align: left;
}

.footer-editorial {
    background-color: #1b4332;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #95d5b2;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #d8f3dc;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #95d5b2;
}

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

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

.footer-column ul li a {
    color: #d8f3dc;
    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: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95d5b2;
}

.contact-content {
    margin-top: 50px;
}

.contact-info-block,
.contact-note-block {
    margin-bottom: 50px;
}

.contact-info-block h2,
.contact-note-block h2 {
    font-size: 28px;
    color: #1b4332;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #2d6a4f;
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.note-text {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
}

.location-info,
.response-time {
    margin-top: 50px;
}

.location-info h2,
.response-time h2 {
    font-size: 28px;
    color: #1b4332;
    margin-bottom: 20px;
}

.location-info p,
.response-time p {
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
}

.services-detailed {
    margin-top: 50px;
}

.service-block {
    margin-bottom: 80px;
}

.service-image-wrap {
    width: 100%;
    margin-bottom: 30px;
    background-color: #d8f3dc;
}

.service-image-wrap img {
    width: 100%;
    height: auto;
}

.service-details h2 {
    font-size: 30px;
    color: #1b4332;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.service-features {
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-features h3 {
    font-size: 20px;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.service-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #52b788;
    font-weight: 700;
}

.service-pricing {
    margin-top: 30px;
    padding: 25px;
    background-color: #d8f3dc;
    border-radius: 6px;
    text-align: center;
}

.price-label {
    font-size: 16px;
    color: #2d6a4f;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 36px;
    color: #1b4332;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

.services-cta-section {
    margin-top: 80px;
    padding: 50px 40px;
    background-color: #f1faee;
    border-radius: 8px;
}

.services-cta-section h2 {
    font-size: 32px;
    color: #1b4332;
    margin-bottom: 20px;
    text-align: center;
}

.services-cta-section > p {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #52b788;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    color: #1b4332;
    margin-bottom: 25px;
}

.thanks-details,
.thanks-next-steps,
.thanks-note {
    margin-top: 50px;
    text-align: left;
}

.thanks-details h2,
.thanks-next-steps h2 {
    font-size: 26px;
    color: #1b4332;
    margin-bottom: 20px;
}

.thanks-details p,
.thanks-next-steps p {
    font-size: 17px;
    line-height: 1.7;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2d6a4f;
    color: #ffffff;
    transform: translateY(-2px);
}

.thanks-note {
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #52b788;
    border-radius: 4px;
}

.thanks-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

#selected-service-display {
    margin-top: 20px;
    padding: 20px;
    background-color: #d8f3dc;
    border-radius: 6px;
}

#selected-service-display p {
    margin: 0;
    font-size: 17px;
    color: #1b4332;
}

.legal-content {
    padding: 60px 30px 80px;
}

.legal-content h1 {
    font-size: 38px;
    color: #1b4332;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-intro {
    font-size: 17px;
    color: #495057;
    font-style: italic;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 26px;
    color: #1b4332;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 20px;
    color: #2d6a4f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    margin: 20px 0 20px 30px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookie-details {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #52b788;
    border-radius: 4px;
}

.cookie-details h4 {
    font-size: 18px;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.cookie-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cookie-details ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.team-commitment {
    margin-top: 60px;
    padding: 40px;
    background-color: #d8f3dc;
    border-radius: 8px;
}

.team-commitment h2 {
    font-size: 28px;
    color: #1b4332;
    margin-bottom: 20px;
}

.team-commitment p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
}

.values-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.values-list li {
    padding: 20px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #52b788;
    border-radius: 4px;
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .story-container {
        padding: 30px 20px 60px;
    }

    .hero-editorial {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 350px;
    }

    .hero-overlay {
        padding: 40px 25px;
    }

    .story-title {
        font-size: 32px;
    }

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

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

    .lead-text {
        font-size: 20px;
    }

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

    .story-body h3 {
        font-size: 21px;
    }

    .inline-image {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }

    .nav-minimal {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

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

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

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

    .form-editorial {
        padding: 30px 20px;
    }

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

    .thanks-content h1 {
        font-size: 30px;
    }

    .thanks-links {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary {
        text-align: center;
    }
}