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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.nav-main {
    padding: 2rem 0;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.hero-minimal {
    padding: 12rem 3rem;
    background-color: #f8f8f8;
}

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

.hero-content-centered h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
}

.page-hero-minimal {
    padding: 8rem 3rem 4rem 3rem;
    background-color: #f8f8f8;
}

.section-spacious {
    padding: 8rem 3rem;
}

.section-spacious-light {
    padding: 8rem 3rem;
    background-color: #f8f8f8;
}

.section-spacious-dark {
    padding: 8rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-offset-left {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 6rem;
}

.content-offset-right {
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 6rem;
}

.text-block-wide {
    max-width: 800px;
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.large-text {
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: 300;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.visual-break {
    width: 100%;
    background-color: #f0f0f0;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dual-visual {
    display: flex;
    width: 100%;
}

.visual-half {
    width: 50%;
    background-color: #f0f0f0;
}

.visual-half img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.image-statement {
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
}

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

.statement-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.statement-overlay p {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    margin: 0;
}

.text-columns-two {
    display: flex;
    gap: 4rem;
}

.column {
    flex: 1;
}

.cta-minimal {
    padding: 8rem 3rem;
    background-color: #f8f8f8;
}

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

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cta-inline {
    padding: 6rem 3rem;
    text-align: center;
}

.link-arrow {
    font-size: 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.link-arrow:hover {
    opacity: 0.6;
}

.link-arrow::after {
    content: " →";
}

.form-section {
    padding: 8rem 3rem;
    background-color: #f8f8f8;
}

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

.form-minimal {
    margin-top: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.service-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #f0f0f0;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-price {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.contact-info-centered {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.info-block {
    text-align: center;
}

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.note-text {
    font-size: 0.9rem;
    color: #666;
}

.thanks-section {
    padding: 10rem 3rem;
    background-color: #f8f8f8;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-reference {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.legal-page {
    padding: 6rem 3rem;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.footer-main {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 3rem 2rem 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

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

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

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

    .hero-content-centered h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-spacious,
    .section-spacious-light,
    .section-spacious-dark {
        padding: 4rem 1.5rem;
    }

    .text-columns-two {
        flex-direction: column;
        gap: 2rem;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .dual-visual {
        flex-direction: column;
    }

    .visual-half {
        width: 100%;
    }

    .content-offset-left,
    .content-offset-right {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

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

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