* {
    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.6;
    color: #1a1a1a;
    background: #fafafa;
}

.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-minimal {
    background: #fff;
    padding: 8rem 2rem 0;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin-bottom: 5rem;
}

.hero-minimal h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.cta-primary:hover {
    background: #333;
}

.hero-image-block {
    width: 100%;
    max-width: 1200px;
    margin-top: 4rem;
    background: #f5f5f5;
}

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

.intro-space {
    padding: 10rem 2rem;
    background: #fff;
}

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

.intro-space h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.intro-space p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-text-offset {
    padding: 8rem 2rem;
    background: #fafafa;
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.text-block-left {
    flex: 1;
}

.text-block-left h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.text-block-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-block-right {
    flex: 1;
    background: #e5e5e5;
}

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

.services-minimal {
    padding: 10rem 2rem;
    background: #fff;
}

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

.section-title-center {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 6rem;
}

.service-card-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-text {
    flex: 1;
    padding-right: 3rem;
}

.service-text h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.service-duration {
    font-size: 0.9rem;
    color: #999;
}

.service-price-block {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

.btn-select {
    padding: 0.9rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #333;
}

.form-section-minimal {
    padding: 10rem 2rem;
    background: #fafafa;
}

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

.form-section-minimal h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

.form-clean {
    background: #fff;
    padding: 3rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 8rem 2rem;
    background: #fff;
}

.testimonial-large {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    font-style: normal;
    color: #333;
}

.testimonial-large cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #999;
    font-style: normal;
}

.approach-section {
    padding: 10rem 2rem 4rem;
    background: #fafafa;
}

.approach-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.approach-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.image-full-width {
    margin-top: 4rem;
    background: #e5e5e5;
}

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

.cta-bottom {
    padding: 10rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

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

.cta-bottom h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #fff;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.cta-large:hover {
    opacity: 0.9;
}

.footer-minimal {
    background: #fff;
    padding: 5rem 2rem 3rem;
}

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

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.footer-column p {
    color: #666;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    color: #999;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.8rem 1.8rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.3s;
}

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

.btn-cookie:hover {
    opacity: 0.8;
}

.btn-cookie-alt {
    background: #f5f5f5;
    color: #333;
}

.btn-cookie-alt:hover {
    opacity: 0.8;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #333;
}

.contact-section {
    padding: 8rem 2rem;
    background: #fff;
}

.contact-section h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
}

.contact-info strong {
    font-weight: 600;
    color: #1a1a1a;
}

.legal-page {
    padding: 6rem 2rem;
    background: #fff;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.legal-page li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-minimal h1 {
        font-size: 2.5rem;
    }

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

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

    .offset-container {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card-large {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 0;
    }

    .service-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .service-price-block {
        align-items: flex-start;
    }

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

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