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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    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: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

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

.article-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f1f3f5;
}

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

.article-content {
    margin-bottom: 40px;
}

.article-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.article-content .lead {
    font-size: 21px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 30px;
}

.article-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.article-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.article-content h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #343a40;
}

.article-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.article-content ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #343a40;
}

.inline-image-block {
    margin: 45px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    background-color: #f1f3f5;
}

.image-caption {
    font-size: 15px;
    color: #6c757d;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

.service-inline-card {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 35px 0;
    border-radius: 8px;
    border-left: 4px solid #495057;
}

.service-inline-card h4 {
    margin-top: 0;
    font-size: 22px;
    color: #1a1a1a;
}

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

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

.cta-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-inline:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.cta-inline-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
}

.cta-inline-large:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

.editorial-form {
    max-width: 500px;
    margin: 30px auto 0;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-top: 50px;
}

.article-header-simple {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
}

.meta-text {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    background-color: #e9ecef;
}

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

.service-detail-content {
    padding: 35px;
}

.service-detail-content h2 {
    margin-top: 0;
    font-size: 28px;
}

.service-duration {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
}

.price-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #dee2e6;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-enroll {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-enroll:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.cta-section-center {
    text-align: center;
    padding: 60px 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 50px;
}

.cta-section-center h2 {
    margin-top: 0;
}

.contact-info-block {
    margin-bottom: 40px;
}

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

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

.email-display {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #495057;
}

.thanks-section {
    text-align: center;
    padding: 60px 30px;
}

.thanks-content h1 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-details {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.editorial-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 30px 30px;
}

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
}

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

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #495057;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #495057;
}

.cookie-content a {
    color: #2c3e50;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

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

    .nav-links {
        gap: 20px;
    }

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

    .article-content h1 {
        font-size: 32px;
    }

    .article-content .lead {
        font-size: 18px;
    }

    .article-content h2 {
        font-size: 26px;
        margin-top: 35px;
    }

    .article-content h3 {
        font-size: 21px;
    }

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

    .form-section {
        padding: 35px 20px;
        margin: 40px -20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .price-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

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