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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --text-color: #2d3748;
    --light-gray: #f7fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #4a5568;
    --white: #ffffff;
    --success-color: #48bb78;
    --warning-color: #f6ad55;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    order: 3;
    flex-basis: 100%;
    margin-top: 1rem;
    text-align: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-header {
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-lead {
    font-size: 1.25rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.article-image {
    width: 100%;
    margin: 2.5rem 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.article-section h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.article-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-section ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.article-section ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.inline-image {
    margin: 2rem 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.grey-bg {
    background-color: var(--light-gray);
    padding: 2.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.principle-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.cta-inline {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 6px;
    text-align: center;
    margin: 2.5rem 0;
}

.cta-inline p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cta-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cta-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-section {
    margin: 3rem 0;
}

.testimonial {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    font-style: italic;
    color: var(--dark-gray);
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-color);
}

.services-section {
    margin: 4rem 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-card p {
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.select-service {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section {
    margin: 4rem 0;
}

.contact-form {
    max-width: 100%;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 6px;
    border-left: 4px solid var(--warning-color);
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    font-style: italic;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: var(--dark-gray);
    color: var(--white);
}

.cookie-btn.reject:hover {
    background-color: var(--text-color);
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin: 0;
    flex: 1;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.service-list {
    list-style: none;
    margin-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item .note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

.contact-info-additional {
    flex: 1;
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 6px;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.faq-section {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-page {
    text-align: center;
}

.thanks-content {
    text-align: left;
}

.thanks-info {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-list {
    margin-left: 1.5rem;
}

.thanks-next-steps {
    margin: 2.5rem 0;
}

.thanks-cta-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.thanks-cta-card {
    background-color: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.thanks-cta-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thanks-cta-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.thanks-cta-card p {
    margin: 0;
    color: var(--dark-gray);
}

.selected-service-display {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--success-color);
}

.legal-page .article-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-page .article-section table th,
.legal-page .article-section table td {
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    text-align: left;
}

.legal-page .article-section table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.legal-page .article-section a {
    color: var(--accent-color);
    text-decoration: none;
}

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

@media (min-width: 768px) {
    .ad-label {
        order: 0;
        flex-basis: auto;
        margin-top: 0;
    }

    .contact-layout {
        flex-direction: row;
    }

    .thanks-cta-grid {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .grey-bg {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-large {
        margin-top: 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}