* {
    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: #2d3748;
    background-color: #f7fafc;
}

.ad-disclosure {
    background-color: #edf2f7;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #4a5568;
    border-bottom: 1px solid #cbd5e0;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #2b6cb0;
}

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

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

.article-header h1 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 18px;
    font-weight: 700;
}

.article-subtitle {
    font-size: 19px;
    color: #718096;
    margin-bottom: 35px;
}

.hero-image {
    margin: 35px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

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

.lead-text {
    font-size: 21px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-body h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

.article-body h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 22px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 22px;
    padding-left: 28px;
}

.article-body li {
    margin-bottom: 10px;
}

.inline-image {
    margin: 45px 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.cta-inline {
    background-color: #ebf8ff;
    border-left: 4px solid #2b6cb0;
    padding: 25px 28px;
    margin: 40px 0;
    border-radius: 4px;
}

.cta-inline p {
    margin-bottom: 18px;
}

.btn-secondary {
    display: inline-block;
    padding: 11px 24px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #2c5282;
    cursor: pointer;
}

.cta-section {
    background-color: #f7fafc;
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
    text-align: center;
}

.cta-section h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a202c;
}

.cta-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #2c5282;
}

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

.service-card {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card h2,
.service-card h3 {
    margin-top: 0;
    color: #1a202c;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
    margin: 25px 0;
}

.btn-service {
    display: inline-block;
    padding: 13px 28px;
    background-color: #48bb78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 15px;
}

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

.form-section {
    background-color: #ffffff;
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.form-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
}

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.disclaimer-section {
    background-color: #fff5f5;
    border-left: 4px solid #e53e3e;
    padding: 25px 28px;
    margin: 50px 0;
    border-radius: 4px;
}

.disclaimer-section h3 {
    margin-top: 0;
    color: #742a2a;
}

.disclaimer-section p {
    color: #4a5568;
    font-size: 15px;
}

.references-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 6px;
}

.references-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

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

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

.references-section a {
    color: #2b6cb0;
    text-decoration: none;
}

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

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
}

.contact-block {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-block h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-block p {
    color: #4a5568;
    font-size: 16px;
}

.thanks-info {
    background-color: #f0fff4;
    border-left: 4px solid #48bb78;
    padding: 25px 28px;
    margin: 40px 0;
    border-radius: 4px;
}

.thanks-info h2 {
    margin-top: 0;
    color: #22543d;
}

.thanks-info ul {
    margin-top: 15px;
}

.legal-content h2 {
    margin-top: 45px;
}

.legal-content h3 {
    margin-top: 30px;
}

.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 #e2e8f0;
}

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
}

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

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

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

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

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

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

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .article-header h1 {
        font-size: 30px;
    }

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

    .article-body {
        font-size: 16px;
    }

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

    .article-body h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 25px;
    }

    .footer-container {
        flex-direction: column;
    }

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

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