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

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

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

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

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

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

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

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

.hero-editorial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 30px;
    text-align: center;
}

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

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

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a202c;
}

.page-header p {
    font-size: 16px;
    color: #718096;
}

.text-block {
    margin-bottom: 50px;
}

.text-block h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a202c;
}

.text-block h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
    color: #2d3748;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.text-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.text-block li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.inline-image {
    margin: 50px 0;
    background-color: #f7fafc;
}

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

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

.btn-text-link {
    display: inline-block;
    font-size: 18px;
    color: #667eea;
    text-decoration: none;
    padding: 15px 35px;
    border: 2px solid #667eea;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-text-link:hover {
    background-color: #667eea;
    color: #ffffff;
}

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

.service-card {
    background-color: #f7fafc;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

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

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    margin: 20px 0;
}

.btn-select-service {
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #5568d3;
}

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

.testimonial {
    background-color: #f7fafc;
    padding: 35px;
    margin: 30px 0;
    border-left: 4px solid #48bb78;
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    color: #718096;
    font-size: 16px;
}

.form-container {
    margin: 50px 0;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.consultation-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.disclaimer-box {
    background-color: #fff5f5;
    border-left: 4px solid #fc8181;
    padding: 25px;
    margin: 50px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #742a2a;
}

.disclaimer-box p {
    margin-bottom: 0;
}

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 50px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.footer-info {
    font-size: 14px;
    color: #a0aec0;
}

.footer-info p {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1000;
    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;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.services-detailed {
    margin: 50px 0;
}

.service-detailed {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-detailed h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 600;
}

.service-detailed p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 6px;
}

.service-duration {
    font-size: 16px;
    color: #718096;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

.service-note {
    font-size: 15px;
    color: #48bb78;
    font-weight: 600;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a202c;
    font-weight: 600;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
    font-weight: 600;
}

.contact-detail {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-message {
    text-align: center;
    padding: 40px 0;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #48bb78;
    font-weight: 700;
}

.thanks-details {
    background-color: #f0fff4;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-details p {
    font-size: 18px;
    color: #2d3748;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: #2d3748;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
}

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

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

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

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

    .text-block h2 {
        font-size: 26px;
    }

    .content-narrow {
        padding: 40px 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

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

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

    .form-container {
        padding: 25px 20px;
    }
}