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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.ad-label {
    font-size: 11px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #cccccc;
    padding: 4px 8px;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: #f8f8f8;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.services-intro {
    padding: 80px 0 40px;
    text-align: center;
    background-color: #fafafa;
}

.services-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    background-color: #fafafa;
    padding-bottom: 80px;
}

.service-card-split {
    display: flex;
    min-height: 400px;
    align-items: stretch;
    margin-bottom: 0;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    background-color: #ffffff;
}

.service-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

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

.btn-select-service {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #333333;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

.form-intro {
    flex: 1;
    padding: 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

#selected-service-display {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.form-wrapper {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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: 20px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    background-color: #f8f8f8;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 18px;
    color: #666666;
}

.about-split,
.approach-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    margin: 60px 0;
}

.about-split.reverse,
.approach-split.reverse {
    flex-direction: row-reverse;
}

.about-content,
.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: #ffffff;
}

.about-content h2,
.approach-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-content p,
.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.about-image,
.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.philosophy-section {
    background-color: #fafafa;
    padding: 80px 0;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.cta-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #cccccc;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cta-section .btn-primary:hover {
    background-color: #e5e5e5;
}

.services-detail {
    padding: 40px 0 80px;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    margin-bottom: 60px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: #ffffff;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features {
    margin: 24px 0;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    font-size: 16px;
    color: #4a4a4a;
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
}

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

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 20px;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.contact-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
    margin: 60px 0;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: #f8f8f8;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0;
}

.contact-note {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #1a1a1a;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0;
}

.contact-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

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

.location-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 16px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
    background-color: #fafafa;
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.selected-service-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.selected-service-info p {
    font-size: 16px;
    margin-bottom: 8px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

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

.legal-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 28px 0 16px;
    color: #1a1a1a;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0 16px 24px;
}

.legal-text ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-container-split,
    .about-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .intro-split.reverse,
    .about-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .service-info,
    .form-intro,
    .form-wrapper,
    .about-content,
    .approach-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 30px;
    }

    .philosophy-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

    .main-nav {
        gap: 16px;
        font-size: 14px;
    }

    .ad-label {
        display: none;
    }
}