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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-accent: #ecf0f1;
    --border-color: #dddddd;
    --white: #ffffff;
    --success: #27ae60;
}

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

.nav-main {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-color);
}

.editorial-layout {
    width: 100%;
}

.hero-editorial {
    width: 100%;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--bg-accent);
}

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

.hero-text-centered {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-text-centered h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.content-narrow p {
    margin-bottom: 1.5rem;
}

.content-narrow h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem 0;
}

.content-narrow h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
}

.content-narrow ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-narrow li {
    margin-bottom: 0.8rem;
}

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

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--bg-accent);
}

.image-caption {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
    text-align: center;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-text {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.btn-text:hover {
    color: var(--primary-color);
}

.full-width-accent {
    background-color: var(--bg-light);
    padding: 4rem 0;
    width: 100%;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background-color: var(--bg-accent);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 1rem 1.5rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 1.5rem 1rem 1.5rem;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 1.5rem 1.5rem 1.5rem;
}

.testimonial {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-section {
    background-color: var(--bg-accent);
    padding: 4rem 0;
    width: 100%;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-color);
}

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

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.references-section {
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
    margin-top: 3rem;
}

.references-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.small-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

.references-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 0.5rem;
}

.references-list a {
    color: var(--accent-color);
    text-decoration: none;
    margin-right: 0.5rem;
}

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

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bg-light);
}

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

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

.footer-column a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding: 2rem 2rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: var(--bg-light);
    line-height: 1.5;
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    align-items: flex-start;
}

.service-detail-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--bg-accent);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-detail-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.6rem;
}

.price-large {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 0;
}

.contact-info-layout {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-column {
    flex: 1;
}

.contact-column h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-column h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
}

.info-box {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.info-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.6rem;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.next-steps {
    text-align: left;
    margin: 2.5rem 0;
}

.step {
    margin-bottom: 2rem;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.service-confirmation.hidden {
    display: none;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 1.5rem 0 0.8rem 0;
}

.legal-content p {
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-content th,
.legal-content td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-content th {
    background-color: var(--bg-light);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 0.5rem;
    }

    .hero-text-centered h1 {
        font-size: 2rem;
    }

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

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

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .service-detail {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-reverse {
        flex-direction: column;
    }

    .contact-info-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .cookie-buttons button {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}