* {
    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;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    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: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #666666;
}

.ad-label {
    font-size: 0.75rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 8rem;
    background-color: #f5f5f5;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.cta-primary:hover {
    background-color: #333333;
}

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

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

.intro-reverse {
    display: flex;
    min-height: 70vh;
}

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.intro-text {
    flex: 1;
    padding: 5rem 8rem 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.services-preview {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #666666;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.philosophy-split {
    display: flex;
    min-height: 70vh;
}

.philosophy-content {
    flex: 1;
    padding: 5rem 4rem 5rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.philosophy-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.booking-section {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

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

.booking-content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
}

.booking-content-wide > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 3rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: inherit;
}

.form-row textarea {
    resize: vertical;
}

.booking-form button {
    align-self: center;
    min-width: 200px;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
}

.footer-column {
    flex: 1;
}

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

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

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    z-index: 2000;
    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 {
    flex: 1;
    font-size: 0.95rem;
    color: #444444;
    margin: 0;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #333333;
}

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

.cookie-reject:hover {
    background-color: #cccccc;
}

.page-hero {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
}

.about-split {
    display: flex;
    min-height: 70vh;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.about-text {
    flex: 1;
    padding: 5rem 8rem 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.values-section {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
}

.team-split-reverse {
    display: flex;
    min-height: 70vh;
}

.team-text {
    flex: 1;
    padding: 5rem 4rem 5rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.team-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.location-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.location-content p {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-detail-item {
    display: flex;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 1rem;
    color: #666666;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-duration {
    font-size: 0.95rem;
    color: #888888;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.booking-cta {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.booking-cta-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.contact-content {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info,
.legal-info {
    flex: 1;
}

.contact-info h2,
.legal-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.info-block p {
    font-size: 1rem;
    color: #444444;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.disclaimer-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 1rem;
    color: #444444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #fafafa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.legal-content {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.legal-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-wrapper p {
    font-size: 1rem;
    color: #444444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-wrapper ul li {
    font-size: 1rem;
    color: #444444;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-split,
    .intro-reverse,
    .philosophy-split,
    .about-split,
    .team-split-reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .philosophy-content,
    .about-text,
    .team-text {
        padding: 3rem 2rem;
    }

    .hero-image,
    .intro-image,
    .philosophy-image,
    .about-image,
    .team-image {
        min-height: 300px;
    }

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

    .services-grid-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

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

    .form-row {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

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