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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 900px;
    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;
    font-size: 14px;
}

.cookie-content a {
    color: #88c0d0;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #5e81ac;
    color: #ffffff;
}

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

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

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

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

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7a7a7a;
    padding: 4px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}

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

.hero-editorial {
    padding: 80px 30px 60px;
    background-color: #ffffff;
}

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

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.lead {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0;
}

.inline-image,
.inline-image-small {
    margin: 40px auto;
    background-color: #e8e8e8;
}

.inline-image {
    max-width: 800px;
}

.inline-image-small {
    max-width: 600px;
}

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

.text-section-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 30px;
}

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

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

.text-section-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 14px;
    margin-top: 30px;
    font-weight: 600;
}

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

.editorial-list {
    list-style-position: outside;
    margin-left: 22px;
    margin-bottom: 24px;
}

.editorial-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.highlight-section {
    background-color: #f5f7fa;
    padding: 60px 0;
}

.cta-inline {
    margin: 40px 0;
}

.btn-text-link {
    font-size: 18px;
    color: #5e81ac;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #5e81ac;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-text-link:hover {
    color: #4c6b8a;
    border-color: #4c6b8a;
}

.services-editorial {
    margin-top: 40px;
}

.service-block {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 6px;
}

.service-block h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 600;
}

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

.service-block .price {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 16px;
    margin-bottom: 18px;
}

.btn-select {
    background-color: #5e81ac;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select:hover {
    background-color: #4c6b8a;
}

.editorial-form {
    margin-top: 30px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

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

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

.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: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #5e81ac;
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-box {
    background-color: #f9f9f9;
    border-left: 4px solid #d08770;
    padding: 24px;
    margin: 40px 0;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.footer-editorial {
    background-color: #2c3e50;
    color: #eceff4;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

.footer-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.footer-editorial p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.footer-nav a {
    color: #88c0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #5e81ac;
}

.footer-disclaimer {
    font-size: 13px;
    color: #a0a0a0;
    margin-top: 30px;
}

.contact-info {
    margin-top: 30px;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-detail {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 36px;
    margin-bottom: 36px;
    border-radius: 6px;
}

.service-detail h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 18px;
    margin-top: 0;
    font-weight: 600;
}

.service-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-price {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 80px 30px;
    background-color: #ffffff;
    min-height: 60vh;
    text-align: center;
}

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

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

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

    .nav-links {
        gap: 20px;
    }

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

    .lead {
        font-size: 18px;
    }

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

    .text-section-narrow p,
    .editorial-list li {
        font-size: 17px;
    }

    .editorial-form {
        padding: 24px;
    }

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}