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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2a2a2a;
    --color-accent: #444;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f8f8;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;
}

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

.nav-minimal {
    padding: 2rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

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

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

.hero-minimal {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.hero-content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.display-large {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 800px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

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

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
}

.cta-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.spacer-large {
    height: var(--spacing-xl);
}

.spacer-medium {
    height: var(--spacing-lg);
}

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

.heading-xl {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.heading-lg {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.heading-md {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.body-large {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.body-small {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-top: 2rem;
}

.services-cards {
    padding: 0 3rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    padding: 4rem;
    border: 1px solid #e0e0e0;
    background-color: var(--color-bg);
    transition: all 0.3s ease;
}

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

.card-number {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-weight: 300;
}

.price-tag {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-select-service {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.cta-block-minimal {
    padding: 0 3rem;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.image-section {
    padding: 0 3rem;
}

.image-placeholder {
    max-width: 1400px;
    margin: 0 auto;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.text-blocks {
    margin-top: 3rem;
}

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

.text-block h3 {
    margin-bottom: 1rem;
}

.text-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 300;
}

.testimonial-minimal {
    padding: 0 3rem;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background-color: var(--color-bg-alt);
}

blockquote {
    margin: 0;
}

blockquote p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.form-section {
    padding: 0 3rem;
}

.form-container-minimal {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1.1rem;
    border: 1px solid #ddd;
    background-color: #fff;
    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(--color-primary);
}

.btn-submit {
    padding: 1.2rem 3rem;
    background-color: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.footer-minimal {
    background-color: var(--color-primary);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: var(--spacing-xl);
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem 0;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 1rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-cookie-accept {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-cookie-accept:hover {
    background-color: transparent;
    color: #fff;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
}

.btn-cookie-reject:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.page-header-minimal {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background-color: var(--color-bg-alt);
}

.header-content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

.service-detail-block {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content {
    padding: 3rem 0;
}

.service-number-large {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

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

.price-value {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 400;
}

.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-block {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.value-block:last-child {
    border-bottom: none;
}

.value-block h3 {
    margin-bottom: 1rem;
}

.value-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 300;
}

.contact-info-section {
    padding: 0 3rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.contact-block h3 {
    margin-bottom: 1.5rem;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.contact-block a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-block a:hover {
    opacity: 0.7;
}

.map-section {
    padding: 0 3rem;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
}

.map-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.thanks-section {
    padding: var(--spacing-xl) 3rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-content {
    padding: 0 3rem;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-primary);
    transition: opacity 0.3s ease;
}

.legal-text a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-content-wide,
    .content-narrow,
    .header-content-wide {
        padding: 0 1.5rem;
    }

    .display-large {
        font-size: 2.5rem;
    }

    .heading-xl {
        font-size: 2rem;
    }

    .heading-lg {
        font-size: 1.8rem;
    }

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

    .body-large {
        font-size: 1.1rem;
    }

    .services-cards,
    .services-detailed,
    .form-section,
    .contact-info-section,
    .image-section,
    .map-section,
    .testimonial-minimal,
    .cta-block-minimal,
    .legal-content {
        padding: 0 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        padding: 0 1.5rem;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .values-section {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .display-large {
        font-size: 2rem;
    }

    .heading-xl {
        font-size: 1.6rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 1rem;
    }
}