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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #d35400;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    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: 1rem;
}

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

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background: var(--accent-color);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 4rem;
    background: var(--bg-light);
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent-color);
}

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

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    background-color: #c8c8c8;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.services-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-card {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);
}

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

.service-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-duration {
    font-weight: 600;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.select-service-btn {
    margin-top: auto;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service-btn:hover {
    background: #1e4458;
}

.form-section-split {
    display: flex;
    background: var(--bg-light);
}

.form-left {
    flex: 1;
    padding: 4rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.form-right {
    flex: 1;
    padding: 4rem;
    background: var(--bg-white);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-color);
}

.values-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.values-text {
    flex: 1;
    padding: 4rem;
}

.values-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.values-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff3e0;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.selected-service-display {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service-display h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .intro-split,
    .intro-split.reverse {
        flex-direction: column;
    }

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

    .form-section-split {
        flex-direction: column;
    }

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

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