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

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

a {
    text-decoration: none;
    color: inherit;
}

.ad-disclosure {
    background: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

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

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

.nav-right a {
    color: #4a4a4a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #d4d4d4;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #c8a882;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

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

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

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

.intro-image {
    flex: 0.9;
    background: #c8a882;
    overflow: hidden;
}

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

.intro-text {
    flex: 1.1;
    padding: 100px 70px;
    background: #f9f7f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.link-arrow {
    color: #c8a882;
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    display: inline-block;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
}

.services-showcase {
    padding: 100px 60px;
    background: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-centered h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 20px;
    color: #6a6a6a;
}

.service-grid-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    min-height: 380px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

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

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

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

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

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #c8a882;
    margin-bottom: 25px;
}

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

.select-service:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.select-service.selected {
    background: #c8a882;
    color: #1a1a1a;
}

.booking-split {
    display: flex;
    min-height: 700px;
    background: #f9f7f4;
}

.booking-info {
    flex: 0.8;
    padding: 80px 60px;
    background: #2c2c2c;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
}

.booking-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #d4d4d4;
}

.booking-form-container {
    flex: 1.2;
    padding: 80px 70px;
    display: flex;
    align-items: center;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #ffffff;
}

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

.form-group textarea {
    resize: vertical;
}

.selected-service-display {
    background: #e8f4ea;
    padding: 18px 20px;
    border-radius: 4px;
    margin-bottom: 28px;
    border-left: 4px solid #4caf50;
}

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

.submit-btn:hover:not(:disabled) {
    background: #b89670;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.trust-split {
    display: flex;
    min-height: 600px;
    background: #ffffff;
}

.trust-content {
    flex: 1;
    padding: 100px 70px;
    background: #fafafa;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.trust-point {
    margin-bottom: 40px;
}

.trust-point h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.trust-image {
    flex: 1;
    background: #c8a882;
    overflow: hidden;
}

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

.footer {
    background: #1a1a1a;
    color: #d4d4d4;
    padding: 70px 60px 40px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b4b4b4;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b4b4b4;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c8a882;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #8a8a8a;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #6a6a6a;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.cookie-btn.reject:hover {
    background: #ffffff;
    color: #2c2c2c;
}

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

@media (max-width: 968px) {
    .split-nav {
        padding: 20px 30px;
    }

    .hero-split,
    .intro-split,
    .booking-split,
    .trust-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .booking-info,
    .booking-form-container,
    .trust-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .intro-text h2,
    .trust-content h2 {
        font-size: 32px;
    }

    .service-card {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 35px;
    }

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