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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #c0392b;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
    --max-reading-width: 720px;
}

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

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

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

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--light-text);
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: sans-serif;
}

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.article-header {
    position: relative;
    margin-bottom: 4rem;
}

.header-image {
    width: 100%;
    height: 600px;
    background-color: var(--bg-light);
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.header-text {
    max-width: var(--max-reading-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.article-header.small .header-text {
    padding-top: 3rem;
}

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

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

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

.article-body {
    max-width: var(--max-reading-width);
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

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

.text-section h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: var(--primary-color);
}

.text-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--secondary-color);
}

.text-section p {
    margin-bottom: 1.2rem;
}

.text-section p strong {
    font-weight: 600;
    color: var(--primary-color);
}

.highlight-section {
    background-color: var(--bg-light);
    padding: 2.5rem;
    margin: 3rem -2.5rem;
    border-left: 4px solid var(--accent-color);
}

.inline-image-section {
    margin: 3.5rem 0;
    text-align: center;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    background-color: var(--bg-light);
    object-fit: cover;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c3e50;
}

.btn-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-large:hover {
    background-color: #a02e21;
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--secondary-color);
}

blockquote p {
    margin-bottom: 0.8rem;
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: normal;
}

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

.services-preview h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

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

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

.final-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

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

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

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

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
}

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

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

.service-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
}

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

.price-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.form-container {
    background-color: var(--bg-light);
    padding: 3rem 2.5rem;
    margin: 3rem -2.5rem;
    border-radius: 8px;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--accent-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #a02e21;
}

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

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

.contact-block p {
    line-height: 1.8;
}

.email-display {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--accent-color);
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.email-note {
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: italic;
    margin-top: 0.5rem;
}

.thanks-message {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: left;
}

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

#service-confirmation {
    background-color: var(--bg-light);
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 2rem;
}

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

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.main-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 3rem 2rem 2rem;
    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 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: sans-serif;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
}

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

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

.footer-column a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: #ddd;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #bbb;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.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;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie:first-child {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-cookie:first-child:hover {
    background-color: #a02e21;
}

.btn-cookie:last-child {
    background-color: #555;
    color: #fff;
}

.btn-cookie:last-child:hover {
    background-color: #444;
}

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

    .lead {
        font-size: 1.1rem;
    }

    .text-section h2 {
        font-size: 1.6rem;
    }

    .header-image {
        height: 400px;
    }

    .highlight-section {
        margin-left: -2rem;
        margin-right: -2rem;
        padding: 2rem;
    }

    .form-container {
        margin-left: -2rem;
        margin-right: -2rem;
        padding: 2rem;
    }

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

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

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

    .btn-cookie {
        width: 100%;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}