* {
    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-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    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;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.editorial-container {
    background: #ffffff;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background: #2c3e50;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    padding: 80px 40px 60px;
}

.hero-text-overlay h1 {
    max-width: 800px;
    margin: 0 auto;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.intro-paragraph {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #34495e;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #34495e;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.inline-image-block {
    margin: 50px 0;
    background: #f8f9fa;
}

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

.image-caption {
    padding: 20px;
    font-size: 16px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.insight-block {
    background: #f0f4f8;
    padding: 35px;
    margin: 45px 0;
    border-left: 4px solid #3498db;
}

.insight-block h3 {
    margin-top: 0;
    font-size: 22px;
    color: #2c3e50;
}

.insight-block p {
    margin-bottom: 0;
    font-size: 17px;
}

.testimonial-inline {
    background: #ffffff;
    border-left: 4px solid #95a5a6;
    padding: 30px;
    margin: 45px 0;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
    margin-top: 10px;
}

.services-inline {
    margin: 60px 0;
}

.service-card-inline {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 35px;
    margin-bottom: 35px;
    transition: box-shadow 0.3s;
}

.service-card-inline:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-card-inline h3 {
    margin-top: 0;
    font-size: 24px;
    color: #2c3e50;
}

.service-card-inline p {
    font-size: 17px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.cta-inline {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #2980b9;
}

.form-container-inline {
    background: #f8f9fa;
    padding: 45px;
    margin: 60px 0;
}

.form-container-inline h3 {
    margin-top: 0;
    font-size: 26px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.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 textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
}

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

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

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

.submit-button:hover {
    background: #229954;
}

.disclaimer-section {
    background: #fff9e6;
    border: 1px solid #f7dc6f;
    padding: 30px;
    margin: 60px 0;
}

.disclaimer-section h3 {
    margin-top: 0;
    font-size: 20px;
    color: #2c3e50;
}

.disclaimer-section p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.7;
    color: #5d6d7e;
}

.references-section {
    margin: 60px 0;
    padding: 30px;
    background: #f8f9fa;
}

.references-section h3 {
    margin-top: 0;
    font-size: 20px;
    color: #2c3e50;
}

.references-section ol {
    padding-left: 20px;
}

.references-section li {
    margin-bottom: 12px;
    font-size: 15px;
}

.references-section a {
    color: #3498db;
    text-decoration: none;
}

.references-section a:hover {
    text-decoration: underline;
}

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.reference:hover {
    text-decoration: underline;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 40px;
}

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

.footer-section {
    flex: 1;
}

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

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

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

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

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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 {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

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

.cookie-reject:hover {
    opacity: 0.9;
}

.cta-section-about {
    margin: 60px 0;
    padding: 40px;
    background: #f0f4f8;
    text-align: center;
}

.cta-section-about p {
    font-size: 18px;
    margin: 0;
}

.cta-section-about a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.cta-section-about a:hover {
    text-decoration: underline;
}

.service-detail-block {
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e9ecef;
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-image {
    margin-bottom: 30px;
    background: #f8f9fa;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0;
}

.service-detail-block ul {
    padding-left: 25px;
    margin: 20px 0;
}

.service-detail-block li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #34495e;
}

.cta-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #2980b9;
}

.faq-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
}

.faq-section h2 {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 35px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 19px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: #5d6d7e;
}

.final-cta-services {
    margin-top: 60px;
    padding: 50px 40px;
    background: #3498db;
    color: #ffffff;
    text-align: center;
}

.final-cta-services h2 {
    margin-top: 0;
    font-size: 32px;
    color: #ffffff;
}

.final-cta-services p {
    font-size: 18px;
    margin: 0;
    color: #ffffff;
}

.final-cta-services a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.contact-info-block {
    margin: 50px 0;
}

.contact-item {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-email {
    font-size: 19px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-cta {
    background: #f0f4f8;
    padding: 40px;
    margin: 50px 0;
}

.contact-cta h2 {
    margin-top: 0;
    font-size: 24px;
}

.contact-cta a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.contact-cta a:hover {
    text-decoration: underline;
}

.contact-faq {
    margin-top: 60px;
}

.thanks-page {
    text-align: center;
    padding-top: 80px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-page h1 {
    font-size: 40px;
    margin-bottom: 25px;
}

.thanks-details {
    margin: 50px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 26px;
    margin-bottom: 25px;
}

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

.thanks-steps li {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
}

.thanks-info {
    background: #f0f4f8;
    padding: 35px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info h2 {
    margin-top: 0;
    font-size: 22px;
}

.contact-email-inline {
    color: #3498db;
    font-weight: 600;
}

.thanks-service-info {
    background: #e8f5e9;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.thanks-service-info h2 {
    margin-top: 0;
    font-size: 20px;
    color: #27ae60;
}

.thanks-service-info p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: #2c3e50;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-back,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    display: inline-block;
}

.btn-back {
    background: #3498db;
    color: #ffffff;
}

.btn-back:hover {
    opacity: 0.9;
}

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

.btn-secondary:hover {
    opacity: 0.9;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 45px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    padding-left: 25px;
    margin: 20px 0;
}

.legal-page li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #34495e;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page strong {
    font-weight: 600;
    color: #2c3e50;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-editorial {
        height: 400px;
    }

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

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

    .content-narrow {
        padding: 0 20px 60px;
    }

    .intro-paragraph {
        font-size: 18px;
    }

    .content-narrow p {
        font-size: 16px;
    }

    .content-narrow h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-back,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}