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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90c7;
    --accent-color: #e8734a;
    --text-dark: #2a2a2a;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #d32f2f;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    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: bold;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hero-image-wrapper {
    margin: 0 0 40px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.article-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.article-content p {
    font-size: 18px;
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 32px;
    margin: 50px 0 24px;
    color: var(--text-dark);
    font-weight: 600;
}

.article-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.article-content h4 {
    font-size: 20px;
    margin: 30px 0 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.inline-image-section {
    margin: 50px 0;
    background-color: var(--bg-light);
}

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

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

.cta-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 19px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

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

.service-card {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary-color);
}

.service-card h3 {
    font-size: 24px;
    margin: 0 0 12px 0;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 16px;
}

.testimonial {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 16px;
}

.form-container {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 50px 0;
}

.form-container h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 50px 0;
    border: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.references-section {
    margin: 50px 0;
    padding: 30px;
    background-color: var(--bg-light);
}

.references-section h4 {
    font-size: 20px;
    margin: 0 0 20px 0;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 40px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

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

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

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

.footer-section ul a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px 40px;
    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;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.services-full-list {
    margin: 40px 0;
}

.service-detailed {
    margin-bottom: 60px;
}

.service-image-wrapper {
    margin-bottom: 24px;
    background-color: var(--bg-light);
}

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

.service-info h2 {
    font-size: 32px;
    margin: 0 0 12px 0;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-features {
    margin-top: 24px;
    list-style-position: inside;
    color: var(--text-light);
}

.service-features li {
    margin-bottom: 8px;
}

.pricing-notes {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 50px 0;
}

.pricing-notes h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
}

.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background-color: var(--bg-light);
}

.cta-section h3 {
    font-size: 28px;
    margin: 0 0 16px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

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

.contact-block {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary-color);
}

.contact-block h2 {
    font-size: 24px;
    margin: 0 0 16px 0;
}

.contact-detail {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-section {
    margin: 40px 0;
}

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

.faq-item h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.confirmation-details {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 24px;
    margin: 0 0 20px 0;
}

.confirmation-details ul {
    list-style-position: inside;
    margin-top: 16px;
}

.confirmation-details li {
    margin-bottom: 10px;
}

.selected-service {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 30px 0;
}

.selected-service h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin: 0 0 16px 0;
}

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

.thanks-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.thanks-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.thanks-note {
    margin: 40px 0;
    font-size: 18px;
    color: var(--text-light);
}

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

.legal-update {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.legal-article ul,
.legal-article ol {
    margin: 20px 0 20px 30px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: bold;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-links {
        flex-direction: column;
        align-items: center;
    }
}