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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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: 250px;
}

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

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

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

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3498db;
}

.editorial-main {
    max-width: 100%;
    margin: 0;
}

.editorial-article {
    display: flex;
    flex-direction: column;
}

.hero-editorial {
    background-color: #f8f9fa;
    padding: 80px 20px 60px;
}

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

.hero-content-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-lead {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.editorial-image {
    max-width: 800px;
    margin: 0 auto;
}

.editorial-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.text-section {
    padding: 60px 20px;
}

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

.text-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.text-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #34495e;
    margin: 32px 0 16px;
    font-weight: 600;
}

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

.inline-cta {
    display: inline-block;
    margin-top: 16px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.image-break {
    width: 100%;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.editorial-image-inline {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.editorial-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-editorial {
    max-width: 720px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card-editorial {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-card-editorial h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.service-detail {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.price-editorial {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0 16px;
}

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

.testimonial-editorial {
    background-color: #f8f9fa;
    padding: 24px 28px;
    border-left: 4px solid #95a5a6;
    margin: 32px 0;
}

.testimonial-editorial p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-editorial cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.form-section-editorial {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

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

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

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    border-top: 1px solid #ffc107;
    border-bottom: 1px solid #ffc107;
}

.disclaimer-box {
    padding: 24px;
    background-color: #fffbf0;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-email {
    color: #bdc3c7;
    font-size: 14px;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #2980b9;
}

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

.page-container h1 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 32px;
}

.page-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 40px 0 20px;
}

.page-container h3 {
    font-size: 22px;
    color: #34495e;
    margin: 28px 0 16px;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.page-container ul,
.page-container ol {
    margin: 16px 0 16px 24px;
}

.page-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    margin-top: 0;
}

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .hero-content-narrow h1 {
        font-size: 32px;
    }

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

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

    .text-narrow p {
        font-size: 16px;
    }

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

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