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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

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

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

.hero-minimal {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 60px;
}

.hero-content {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.intro-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 60px;
}

.intro-container {
    max-width: 800px;
}

.intro-text {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 300;
    color: #333;
}

.services-preview {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 32px;
    font-weight: 400;
}

.service-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.price {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.cta-center {
    text-align: center;
    margin-top: 80px;
}

.btn-text {
    font-size: 16px;
    text-decoration: none;
    color: #1a1a1a;
    padding: 20px 0;
    border-bottom: 2px solid #1a1a1a;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.btn-text:hover {
    opacity: 0.6;
}

.image-break {
    width: 100%;
    margin: 120px 0;
    background-color: #f5f5f5;
}

.image-break img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.booking-section {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 60px;
}

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

.booking-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.form-group input,
.form-group select {
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
}

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

.btn-submit {
    padding: 20px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.philosophy-section {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 60px;
}

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

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.footer {
    background-color: #f5f5f5;
    padding: 80px 60px 40px;
    margin-top: 120px;
}

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #666;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
}

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    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;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
}

.page-header {
    max-width: 1400px;
    margin: 80px auto 100px;
    padding: 0 60px;
}

.page-header h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 20px;
    color: #666;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 60px;
}

.service-item {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-info h2 {
    font-size: 40px;
    font-weight: 400;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.booking-cta {
    text-align: center;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 60px;
}

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

.btn-primary {
    display: inline-block;
    padding: 20px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.about-content {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 60px;
}

.about-block {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

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

.about-block img {
    flex: 1;
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.values-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 60px;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.location-section {
    max-width: 800px;
    margin: 120px auto;
    padding: 0 60px;
}

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

.location-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 60px;
}

.contact-info-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 60px;
}

.contact-item h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.contact-image {
    width: 100%;
    margin-bottom: 80px;
    background-color: #f5f5f5;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-notes {
    margin-bottom: 80px;
}

.contact-notes h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-notes p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.contact-cta {
    text-align: center;
}

.thanks-container {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.confirmation-details {
    background-color: #f5f5f5;
    padding: 30px;
    margin-bottom: 40px;
}

.confirmation-details p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.thanks-note {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 30px;
    align-items: center;
}

.thanks-image {
    flex: 1;
    background-color: #f5f5f5;
}

.thanks-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.next-steps {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 60px;
}

.next-steps h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    gap: 60px;
}

.step-item {
    flex: 1;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto 120px;
    padding: 0 60px;
}

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

.legal-intro {
    font-size: 14px;
    color: #999;
    margin-bottom: 60px;
}

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

.legal-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-minimal {
        padding: 0 30px;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .intro-section,
    .services-preview,
    .booking-section,
    .philosophy-section,
    .page-header,
    .services-detail,
    .about-content,
    .values-section,
    .location-section,
    .contact-content,
    .next-steps,
    .legal-page {
        padding: 0 30px;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .intro-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-item,
    .about-block {
        flex-direction: column;
        gap: 30px;
    }

    .service-item.reverse,
    .about-block.reverse {
        flex-direction: column;
    }

    .contact-info-block {
        flex-direction: column;
        gap: 40px;
    }

    .thanks-container {
        flex-direction: column;
        padding: 0 30px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer {
        padding: 40px 30px 20px;
    }

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

    .footer-links {
        gap: 40px;
    }

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