* {
    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: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-links a:hover {
    color: #2c3e50;
}

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

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

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

.hero-lead {
    font-size: 22px;
    color: #4a5568;
    line-height: 1.6;
}

.content-body {
    font-size: 18px;
    line-height: 1.8;
}

.intro-story {
    margin-bottom: 50px;
}

.intro-story p {
    margin-bottom: 20px;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.problem-section h2,
.insight-section h2,
.services-reveal h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

.btn-primary {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1a252f;
}

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

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-card.selected {
    border-color: #2c3e50;
    background: #ffffff;
}

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

.service-card p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #5a6c7d;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-select {
    background: #ffffff;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #2c3e50;
    color: #ffffff;
}

.service-card.selected .btn-select {
    background: #2c3e50;
    color: #ffffff;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-section > p {
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-group input[readonly] {
    background: #e8e8e8;
    cursor: not-allowed;
}

.btn-submit {
    background: #2c3e50;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a252f;
}

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background: #fff9e6;
    border-left: 4px solid #f0b429;
    border-radius: 4px;
}

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

.site-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 40px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.footer-copy {
    font-size: 14px;
    color: #8899a6;
}

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

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #88c0ff;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background: #218838;
}

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

.btn-reject:hover {
    background: #5a6268;
}

.thanks-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.thanks-page .service-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 18px;
}

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

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

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

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

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

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

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

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.about-sections {
    margin: 40px 0;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-item p {
    font-size: 16px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .content-body {
        font-size: 17px;
    }

    .problem-section h2,
    .insight-section h2,
    .services-reveal h2 {
        font-size: 26px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
