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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #007bff;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

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

.hero-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

.intro-image {
    flex: 1;
    background-color: #ced4da;
    overflow: hidden;
}

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

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

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.services-featured {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.services-featured h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

.service-card-split {
    display: flex;
    margin-bottom: 40px;
    background-color: #ffffff;
    min-height: 320px;
}

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

.service-visual {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 5%;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.process-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.process-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.process-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.process-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.form-section-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.form-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-content p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 32px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.form-group input,
.form-group select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

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

.btn-submit {
    padding: 16px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    color: #adb5bd;
    font-size: 15px;
}

.footer-column a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
}

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

.footer-disclaimer {
    padding: 20px;
    background-color: #212529;
    border-radius: 4px;
    margin-bottom: 30px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: #ffffff;
    padding: 24px 5%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

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

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
    background-color: #007bff;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.story-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

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

.values-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.values-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.values-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.team-intro {
    font-size: 17px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.cta-split {
    display: flex;
    min-height: 400px;
    background-color: #ffffff;
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 28px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-cta-secondary:hover {
    background-color: #5a6268;
}

.cta-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.services-header-split {
    display: flex;
    min-height: 400px;
    background-color: #1a1a1a;
}

.services-header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
    color: #ffffff;
}

.services-header-text h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.services-header-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #e9ecef;
}

.services-header-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.services-list {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-item-split {
    display: flex;
    min-height: 400px;
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
}

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

.service-item-visual {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.service-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.service-item-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-item-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.price-block {
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
}

.booking-cta-split {
    display: flex;
    min-height: 450px;
    background-color: #f8f9fa;
}

.booking-cta-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.booking-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.booking-cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.booking-cta-content p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 28px;
}

.booking-cta-content .btn-cta-primary {
    margin-bottom: 12px;
}

.contact-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #ffffff;
}

.contact-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
    background-color: #28a745;
    color: #ffffff;
}

.contact-hero-text h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.contact-hero-text p {
    font-size: 18px;
    line-height: 1.7;
}

.contact-hero-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.contact-details-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.contact-info-block {
    flex: 1;
    padding: 60px 5%;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.email-display {
    color: #007bff;
    font-weight: 600;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.contact-approach {
    padding: 80px 5%;
    background-color: #ffffff;
}

.contact-approach h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
    border-radius: 4px;
}

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

.thanks-hero {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #28a745;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
}

.selected-service-info {
    background-color: #e7f3ff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #007bff;
}

.selected-service-info p {
    font-size: 16px;
    color: #1a1a1a;
}

.thanks-note {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 32px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.btn-back-home,
.btn-view-services {
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-back-home {
    background-color: #007bff;
    color: #ffffff;
}

.btn-back-home:hover {
    background-color: #0056b3;
}

.btn-view-services {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-view-services:hover {
    background-color: #5a6268;
}

.thanks-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.legal-content {
    padding: 80px 10%;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #495057;
}

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

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

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

.legal-content a {
    color: #007bff;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0056b3;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .process-split,
    .form-section-split,
    .about-hero-split,
    .story-split,
    .values-split,
    .cta-split,
    .services-header-split,
    .service-item-split,
    .booking-cta-split,
    .contact-hero-split,
    .contact-details-split,
    .approach-split,
    .thanks-hero {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .values-split.reverse,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .about-hero-content h1,
    .services-header-text h1,
    .contact-hero-text h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .process-text h2,
    .story-text h2,
    .values-text h2,
    .cta-content h2,
    .service-item-content h2,
    .booking-cta-content h2,
    .contact-info-block h2 {
        font-size: 30px;
    }

    .services-featured h2,
    .team-section h2 {
        font-size: 34px;
    }

    .nav-right {
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}