* {
    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-color: #fafafa;
}

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: transparent;
}

.nav-brand {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

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

.hero-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 60px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    background-color: #e8e8e8;
}

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

.intro-statement {
    padding: 160px 60px;
    background-color: #ffffff;
}

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

.large-text {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.5;
    color: #2a2a2a;
}

.service-preview {
    padding: 120px 60px;
    background-color: #fafafa;
}

.service-preview h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 100px;
    letter-spacing: 1px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #ffffff;
}

.card-image {
    width: 100%;
    height: 280px;
    background-color: #e8e8e8;
    margin-bottom: 30px;
}

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

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 17px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
}

.price {
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.approach-section {
    display: flex;
    align-items: center;
    padding: 140px 60px;
    gap: 100px;
    background-color: #ffffff;
}

.approach-content {
    flex: 1;
    max-width: 500px;
}

.approach-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
}

.approach-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
    font-weight: 300;
}

.approach-image {
    flex: 1;
    max-width: 600px;
    height: 450px;
    background-color: #e8e8e8;
}

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

.cta-section {
    padding: 140px 60px;
    text-align: center;
    background-color: #fafafa;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-section > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 18px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-btn {
    padding: 20px 50px;
    font-size: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 120px 60px;
    background-color: #ffffff;
}

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

.testimonial {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

.minimal-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 2;
    font-weight: 300;
}

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

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

.disclaimer {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #2a2a2a;
    border-left: 3px solid #666;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 25px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

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

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

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

.services-hero {
    padding: 100px 60px;
    text-align: center;
    background-color: #ffffff;
}

.services-hero h1 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.services-hero p {
    font-size: 21px;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 80px 60px;
    background-color: #fafafa;
}

.service-item {
    max-width: 1100px;
    margin: 0 auto 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    height: 380px;
    background-color: #e8e8e8;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    font-weight: 300;
}

.service-price {
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-weight: 300;
}

.service-features li:before {
    content: "—";
    position: absolute;
    left: 0;
}

.about-hero {
    padding: 100px 60px;
    text-align: center;
    background-color: #ffffff;
}

.about-hero h1 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 40px;
}

.about-content {
    padding: 80px 60px;
    background-color: #fafafa;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 19px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-image {
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 60px auto;
    background-color: #e8e8e8;
}

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

.contact-hero {
    padding: 100px 60px 60px;
    text-align: center;
    background-color: #ffffff;
}

.contact-hero h1 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 30px;
}

.contact-content {
    padding: 60px 60px 120px;
    background-color: #fafafa;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-block {
    margin-bottom: 60px;
}

.contact-block h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-block p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 30px;
}

.thanks-container p {
    font-size: 21px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 600px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 45px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #333;
}

.legal-page {
    padding: 100px 60px;
    background-color: #fafafa;
}

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

.legal-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 300;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content p,
.legal-content li {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    font-weight: 300;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-minimal {
        padding: 60px 30px;
    }

    .intro-statement {
        padding: 80px 30px;
    }

    .large-text {
        font-size: 24px;
    }

    .service-preview {
        padding: 60px 30px;
    }

    .service-preview h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .service-cards {
        gap: 40px;
    }

    .approach-section {
        flex-direction: column;
        padding: 80px 30px;
        gap: 50px;
    }

    .approach-content h2 {
        font-size: 32px;
    }

    .approach-content p {
        font-size: 17px;
    }

    .cta-section {
        padding: 80px 30px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .trust-section {
        padding: 80px 30px;
    }

    .testimonial {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .service-item {
        flex-direction: column !important;
        gap: 40px;
    }

    .services-hero h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 42px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}