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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
    background-color: #8b7355;
    color: white;
}

.cookie-buttons button:first-child:hover {
    background-color: #6d5a44;
}

.cookie-buttons button:last-child {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-buttons button:last-child:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #8b7355;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.nav-right a:hover {
    color: #8b7355;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #f5f1ed;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b7355;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #6d5a44;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    background-color: #e8dfd6;
}

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

.philosophy-split {
    display: flex;
}

.philosophy-image {
    flex: 1;
    background-color: #d4c9bd;
}

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

.philosophy-text {
    flex: 1;
    padding: 100px 60px;
    background-color: #ffffff;
}

.philosophy-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

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

.services-intro p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 30px 80px;
    background-color: #fafafa;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 20px);
    background-color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #666;
    flex-grow: 1;
}

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #8b7355;
    margin: 0 25px 20px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #2c2c2c;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #8b7355;
}

.booking-split {
    display: flex;
}

.booking-left {
    flex: 1;
    padding: 100px 60px;
    background-color: #8b7355;
    color: white;
}

.booking-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.booking-left p {
    font-size: 18px;
    line-height: 1.7;
}

.booking-right {
    flex: 1;
    padding: 100px 60px;
    background-color: #f5f1ed;
}

.booking-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.submit-btn {
    padding: 16px 50px;
    background-color: #2c2c2c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.values-split {
    display: flex;
}

.values-text {
    flex: 1;
    padding: 100px 60px;
    background-color: #ffffff;
}

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

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

.values-image {
    flex: 1;
    background-color: #d4c9bd;
}

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

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #8b7355;
}

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

.footer-column a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #999;
    font-style: italic;
}

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

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

@media (max-width: 968px) {
    .hero-split,
    .philosophy-split,
    .booking-split,
    .values-split {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .split-nav {
        padding: 20px 30px;
    }

    .nav-right {
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .service-card {
        width: 100%;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .split-nav {
        flex-direction: column;
        gap: 15px;
    }
}