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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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;
}

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

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

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-editorial {
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
    font-family: 'Georgia', serif;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.editorial-main {
    background-color: #fff;
}

.editorial-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #d5e8d4;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    padding: 0 30px;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
}

.article-body {
    padding: 0 30px 80px;
}

.article-body section {
    margin-bottom: 60px;
}

.article-body h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f2d;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.article-body p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.inline-image-section {
    text-align: center;
    margin: 70px 0;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.image-caption {
    font-style: italic;
    font-size: 15px;
    color: #7f8c8d;
}

.service-card-editorial {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.service-card-editorial.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    max-width: 400px;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 0;
}

.cta-inline {
    padding: 12px 28px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #27ae60;
}

.trust-list {
    list-style: none;
    padding-left: 0;
}

.trust-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 24px;
    font-weight: 700;
}

.cta-section-editorial {
    text-align: center;
    padding: 40px;
    background-color: #f1f8f4;
    border-radius: 8px;
    margin: 60px 0;
}

.cta-section-editorial h2 {
    margin-bottom: 15px;
}

.form-section-editorial {
    background-color: #fff;
    padding: 50px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #27ae60;
}

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #fef9e7;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

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

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

.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: 200px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #fff;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.content-page p,
.content-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

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

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info strong {
    color: #2c5f2d;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.service-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.service-item h3 {
    color: #2c5f2d;
    margin-bottom: 15px;
}

.service-item .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 0;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f1f8f4;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 38px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 15px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-container .back-link:hover {
    background-color: #27ae60;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .service-card-editorial,
    .service-card-editorial.reverse {
        flex-direction: column;
    }

    .service-image {
        max-width: 100%;
    }

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

    .article-body h2 {
        font-size: 26px;
    }

    .article-body p {
        font-size: 16px;
    }
}