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

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

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

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

.cookie-content {
    max-width: 1100px;
    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;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

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

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

.main-nav {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding-left: 28px;
    border-left: 1px solid #e0e0e0;
    font-family: Arial, sans-serif;
}

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

.hero-editorial {
    margin-bottom: 50px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 2px;
}

.narrative-block {
    margin-bottom: 60px;
}

.opening-paragraph {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.narrative-block p {
    font-size: 17px;
    margin-bottom: 18px;
}

.inline-cta {
    margin: 35px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.insight-section {
    margin-bottom: 60px;
}

.insight-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 2px;
}

.story-block {
    margin-bottom: 60px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.editorial-list {
    list-style: none;
    margin: 28px 0;
}

.editorial-list li {
    font-size: 17px;
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
}

.editorial-list li:before {
    content: "—";
    position: absolute;
    left: 0;
}

.trust-building {
    margin-bottom: 60px;
}

.trust-building h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 400;
}

.content-block {
    margin-bottom: 42px;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.content-block p {
    font-size: 17px;
    margin-bottom: 18px;
}

.content-image {
    width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 2px;
}

.benefits-reveal {
    margin-bottom: 60px;
}

.benefits-reveal h2 {
    font-size: 32px;
    margin-bottom: 28px;
    font-weight: 400;
}

.benefit-item {
    font-size: 17px;
    margin-bottom: 20px;
    padding-left: 24px;
    border-left: 3px solid #3498db;
    padding-top: 8px;
    padding-bottom: 8px;
}

.benefit-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.testimonial-block {
    margin: 60px 0;
    padding: 40px;
    background: #f9f9f9;
    border-left: 4px solid #95a5a6;
}

.testimonial-block blockquote {
    font-style: italic;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.service-intro {
    margin-bottom: 50px;
    text-align: center;
}

.service-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-intro p {
    font-size: 17px;
    margin-bottom: 24px;
}

.inline-link-cta {
    display: inline-block;
    padding: 12px 28px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.services-showcase {
    margin-bottom: 60px;
}

.services-showcase h2 {
    font-size: 32px;
    margin-bottom: 36px;
    font-weight: 400;
    text-align: center;
}

.service-card {
    background: #fff;
    padding: 32px;
    margin-bottom: 28px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 14px;
    font-family: Arial, sans-serif;
}

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

.service-select {
    padding: 12px 28px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.why-act-now {
    margin-bottom: 60px;
}

.why-act-now h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.why-act-now p {
    font-size: 17px;
    margin-bottom: 18px;
}

.form-section {
    margin-bottom: 60px;
    padding: 48px 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 400;
    text-align: center;
}

.form-section > p {
    font-size: 16px;
    margin-bottom: 32px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.contact-form {
    max-width: 550px;
    margin: 0 auto;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 17px;
    font-family: Arial, sans-serif;
    font-weight: 500;
}

.disclaimer-section {
    margin-bottom: 60px;
    padding: 32px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
    font-family: Arial, sans-serif;
}

.final-thought {
    margin-bottom: 40px;
    text-align: center;
}

.final-thought p {
    font-size: 18px;
    margin-bottom: 16px;
    font-style: italic;
}

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

.footer-content {
    max-width: 1100px;
    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 h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e0e0e0;
        padding-top: 12px;
    }

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

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

    .editorial-container {
        padding: 40px 16px;
    }

    .insight-section h2,
    .story-block h2,
    .trust-building h2,
    .benefits-reveal h2,
    .service-intro h2,
    .services-showcase h2,
    .why-act-now h2 {
        font-size: 26px;
    }

    .form-section {
        padding: 32px 20px;
    }

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

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