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

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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #27ae60;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.editorial-header {
    margin-bottom: 50px;
}

.header-image-wrap {
    margin-bottom: 30px;
    background-color: #d5e8d4;
    overflow: hidden;
    border-radius: 4px;
}

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

.editorial-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a252f;
}

.editorial-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    font-style: italic;
}

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

.intro-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #34495e;
}

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

.editorial-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.editorial-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 30px;
    color: #27ae60;
}

.editorial-section p {
    font-size: 17px;
    margin-bottom: 18px;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #e8f5e9;
    border-radius: 4px;
    overflow: hidden;
}

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

.image-caption {
    display: block;
    padding: 15px;
    font-size: 14px;
    font-style: italic;
    color: #546e7a;
    font-family: 'Arial', sans-serif;
}

.highlight-section {
    background-color: #f1f8f4;
    padding: 30px;
    border-left: 4px solid #27ae60;
    margin-left: -30px;
    margin-right: -30px;
}

.insight-box {
    background-color: #fff;
    padding: 25px;
    margin: 30px 0;
    border-left: 3px solid #27ae60;
    font-style: italic;
}

.insight-box p {
    margin-bottom: 0;
    color: #546e7a;
}

.services-narrative {
    margin-top: 60px;
}

.service-story {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.service-story:last-of-type {
    border-bottom: none;
}

.service-price {
    font-size: 19px;
    font-weight: 600;
    color: #27ae60;
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
}

.trust-section {
    background-color: #fafafa;
    padding: 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.testimonial-inline {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-left: 3px solid #3498db;
}

.testimonial-inline p:first-child {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-family: 'Arial', sans-serif;
}

.cta-embedded {
    background-color: #e8f5e9;
    padding: 40px 30px;
    margin-left: -30px;
    margin-right: -30px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #27ae60;
}

.form-submit {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px;
    margin-top: 80px;
}

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

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

.footer-section p {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

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

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

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

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

.cookie-content a {
    color: #27ae60;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: #7f8c8d;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #6c7a89;
}

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

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

    .highlight-section,
    .trust-section,
    .cta-embedded {
        margin-left: 0;
        margin-right: 0;
        padding: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}