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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #34495e;
    --color-accent: #e74c3c;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e1e8ed;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --spacing-unit: 1.5rem;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg);
}

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

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

.logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-label {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    color: var(--color-text-light);
    background-color: var(--color-bg-alt);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    border: 1px solid var(--color-border);
}

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
}

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

.article-hero.small {
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 2rem;
    background-color: #f0f0f0;
}

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

.article-header-text {
    padding: 0 2rem;
}

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

.article-hero.small .article-header-text h1 {
    font-size: 2.2rem;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-weight: 400;
    line-height: 1.5;
}

.article-content {
    padding: 0 2rem 4rem;
}

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

.lead-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.inline-image-section {
    margin: 3rem 0;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.8rem;
    background-color: #f0f0f0;
}

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

.inline-quote {
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--color-accent);
}

.inline-quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.inline-quote cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--color-text-light);
}

.cta-inline {
    background-color: var(--color-bg-alt);
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    border-radius: 8px;
}

.cta-inline h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.cta-inline p {
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    transition: all 0.2s;
    cursor: pointer;
}

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

.two-column-text {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.column {
    flex: 1;
}

.styled-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.styled-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.testimonial-block {
    margin: 2.5rem 0;
}

.testimonial {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-style: italic;
}

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

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

.section-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

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

.service-card {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--color-border);
    transition: border-color 0.2s;
}

.service-card:hover {
    border-color: var(--color-accent);
}

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

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.duration {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.price {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

.btn-select {
    background-color: var(--color-primary);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

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

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

.form-section.hidden {
    display: none;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: var(--color-accent);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background-color: #fef9f3;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

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

.footer-bottom p {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    border-top: 3px solid var(--color-accent);
}

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

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

.cookie-content p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.contact-split {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.contact-visual .caption {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    margin-top: 0;
}

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

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

.expectation {
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: 4px;
}

.expectation h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.faq-section,
.faq-contact {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
}

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

.thanks-content {
    padding: 2rem;
}

.thanks-hero {
    text-align: center;
    margin: 3rem 0;
}

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

.confirmation-box {
    background-color: var(--color-bg-alt);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.selected-service-info h3 {
    margin-top: 0;
}

.suggestions {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.suggestion-card {
    flex: 1;
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-text);
    border: 2px solid var(--color-border);
    transition: border-color 0.2s;
}

.suggestion-card:hover {
    border-color: var(--color-accent);
}

.suggestion-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.suggestion-card p {
    font-size: 0.95rem;
    margin: 0;
}

.legal-page {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.legal-page section {
    margin-bottom: 3rem;
}

.legal-page ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

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

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

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

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

.principle-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.principle {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 4px;
}

.principle h3 {
    margin-top: 0;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
}

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

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

.service-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

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

.price-tag {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.service-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.service-includes,
.service-for {
    margin: 2rem 0;
}

.service-includes h3,
.service-for h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .two-column-text {
        flex-direction: column;
    }

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

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

    .contact-split {
        flex-direction: column;
    }

    .suggestions {
        flex-direction: column;
    }

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

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}