* {
    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;
}

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.ad-label {
    font-size: 13px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

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

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

.brand-mark a {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.hero-narrative {
    padding: 60px 0 50px;
}

.hero-text-center {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.lead-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
}

.hero-image-wrapper {
    margin: 0 auto;
    max-width: 1100px;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.story-block {
    padding: 60px 0;
}

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

.narrow-content h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
}

.narrow-content h2:first-child {
    margin-top: 0;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 19px;
    color: #666;
    margin-bottom: 30px;
}

.inline-image-block {
    margin: 35px 0;
    background-color: #efefef;
    border-radius: 3px;
    overflow: hidden;
}

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

.services-editorial {
    padding: 50px 0;
    background-color: #fff;
}

.service-list-vertical {
    margin-top: 40px;
}

.service-item {
    padding: 35px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-item h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #2a5d34;
    font-family: 'Arial', sans-serif;
}

.select-service-btn {
    background-color: #2a5d34;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1e4426;
}

.inline-cta-block {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.form-editorial {
    padding: 60px 0;
    background-color: #fff;
}

.form-intro {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

.quote-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #fff;
}

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

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

.btn-submit {
    background-color: #2a5d34;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 50px 0;
    background-color: #fef9e7;
    border-top: 1px solid #e8e0c7;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #b0b0b0;
    padding: 50px 20px 30px;
    margin-top: 60px;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2a5d34;
    color: #fff;
}

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

.btn-reject {
    background-color: #555;
    color: #fff;
}

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

.legal-content {
    padding: 60px 0;
}

.legal-intro {
    font-size: 15px;
    color: #888;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.legal-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.legal-content h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-top: 35px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    color: #2a2a2a;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

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

.legal-content li {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.contact-info-block {
    padding: 20px 0;
}

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

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

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 25px;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin: 30px auto;
    max-width: 500px;
    font-size: 17px;
    color: #2a5d34;
    font-weight: 500;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
    padding-left: 20px;
}

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

.cta-block {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2a5d34;
    color: #fff;
}

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

.btn-secondary {
    background-color: #666;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #444;
}

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

    .nav-links {
        gap: 15px;
    }

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

    .lead-intro {
        font-size: 18px;
    }

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

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
    }

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

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