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

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cookie-banner.active {
    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 {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #86c7ff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #666666;
    color: #ffffff;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brand {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 12px;
    color: #888888;
    font-style: italic;
    padding: 4px 8px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #4a90e2;
}

.editorial-content {
    padding: 40px 0;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-editorial h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: normal;
    color: #1a1a1a;
}

.hero-image {
    margin: 30px 0;
    background-color: #e8e8e8;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444444;
    margin-top: 30px;
}

.story-section,
.problem-section,
.insight-section,
.trust-section,
.services-reveal,
.form-section {
    margin-bottom: 60px;
}

.story-section h2,
.problem-section h2,
.insight-section h2,
.trust-section h2,
.services-reveal h2,
.form-section h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.story-section p,
.problem-section p,
.insight-section p,
.trust-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.inline-image-right {
    float: right;
    width: 50%;
    margin-left: 30px;
    margin-bottom: 20px;
}

blockquote {
    margin: 40px 0;
    padding: 20px 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a90e2;
    font-size: 19px;
    font-style: italic;
    color: #333333;
}

.problem-list {
    margin: 30px 0;
    padding-left: 30px;
}

.problem-list li {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.insight-block {
    margin: 30px 0;
    padding: 25px;
    background-color: #f5f8fa;
    border-radius: 4px;
}

.insight-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.insight-block p {
    font-size: 17px;
    line-height: 1.6;
}

.cta-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #eef5fb;
    border-radius: 6px;
    text-align: center;
}

.cta-inline p {
    font-size: 19px;
    margin-bottom: 20px;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    transition: background-color 0.2s;
}

.btn-inline:hover {
    background-color: #357abd;
}

.testimonial-block {
    margin: 30px 0;
    padding: 25px;
    background-color: #fafafa;
    border-left: 3px solid #cccccc;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #333333;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 16px;
    color: #666666;
    text-align: right;
}

.service-card-editorial {
    margin: 35px 0;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444444;
}

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

.price {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
}

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

.btn-select:hover {
    background-color: #357abd;
}

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

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

.form-field label {
    display: block;
    font-size: 17px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 25px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
}

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

.site-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.footer-block a {
    color: #86c7ff;
    text-decoration: none;
    transition: color 0.2s;
}

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

.page-header {
    padding: 60px 0 40px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: normal;
}

.page-content {
    padding: 40px 0;
}

.page-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.page-content li {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.thanks-message {
    text-align: center;
    padding: 80px 20px;
}

.thanks-message h1 {
    font-size: 42px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 19px;
    margin-bottom: 30px;
}

.thanks-message .btn-inline {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .inline-image-right {
        float: none;
        width: 100%;
        margin-left: 0;
    }

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

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

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