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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-content {
    max-width: 100%;
}

.article-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-text {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.text-section {
    padding: 70px 30px;
}

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

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

.narrow-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.narrow-text h3 {
    font-size: 26px;
    line-height: 1.4;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.inline-image-section {
    padding: 80px 30px;
}

.content-image-wrap {
    width: 100%;
    max-width: 720px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 4px;
}

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

.problem-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.insight-box {
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    padding: 30px;
    margin: 40px 0;
}

.insight-box p {
    margin: 0;
}

.solution-section {
    padding: 80px 30px;
}

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

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

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.testimonials-section {
    padding: 80px 30px;
    background-color: #fafbfc;
}

.testimonial {
    background-color: #ffffff;
    border-left: 3px solid #3498db;
    padding: 30px;
    margin: 30px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 15px;
}

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

.services-reveal {
    padding: 90px 30px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-image-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 25px 20px;
    color: #5a6c7d;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 25px;
}

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 25px 25px;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 30px;
}

.order-form {
    max-width: 600px;
    margin: 40px auto 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    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: #3498db;
}

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

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

.final-cta {
    padding: 90px 30px;
}

.page-header {
    padding: 70px 30px 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.subtitle {
    font-size: 19px;
    color: #7f8c8d;
}

.services-detail {
    padding: 60px 30px;
}

.service-detail-card {
    margin-bottom: 70px;
}

.service-detail-content {
    margin-top: 30px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.contact-info-section {
    margin-top: 50px;
}

.contact-item {
    margin-bottom: 45px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 30px;
    margin-top: 50px;
    border-radius: 4px;
}

.contact-note p {
    margin-bottom: 15px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-note a {
    color: #3498db;
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 30px;
    text-align: center;
    min-height: 500px;
}

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

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
    border-radius: 6px;
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 20px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

#selectedServiceInfo {
    font-weight: 600;
    color: #3498db;
}

.thanks-next-steps {
    margin: 50px auto;
    text-align: left;
    max-width: 600px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.thanks-actions {
    margin-top: 50px;
}

.legal-page .legal-content {
    font-size: 16px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

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

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

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.disclaimer {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 25px;
    background-color: #34495e;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.disclaimer strong {
    color: #ecf0f1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .narrow-text {
        padding: 0 20px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

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

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

    .btn-cookie {
        width: 100%;
    }

    .thanks-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}