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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

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

.nav-right a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    background: #f7f9fb;
}

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

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #555;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #2980b9;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-primary:hover {
    background: #21618c;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #2980b9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2980b9;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2980b9;
    color: #ffffff;
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

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

.split-image {
    flex: 1;
    background: #c7cdd4;
    position: relative;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    background: #ffffff;
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 26px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #555;
}

.services-preview {
    padding: 90px 6%;
    background: #fafbfc;
}

.section-header-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #d8dce2;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 24px 18px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2980b9;
    margin: 0 24px 20px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #ecf0f1;
    color: #2c3e50;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2980b9;
    color: #ffffff;
}

.select-service.selected {
    background: #27ae60;
    color: #ffffff;
}

.form-section {
    padding: 90px 6%;
    background: #ffffff;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

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

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 38px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-field label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-field input,
.form-field textarea {
    padding: 14px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.form-field input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 64px 6% 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto 48px;
}

.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ecf0f1;
    padding: 24px 6%;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.page-header {
    padding: 120px 6% 80px;
    background: #f7f9fb;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 6%;
    max-width: 1100px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    margin: 48px 0 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #2c3e50;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 28px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.contact-info {
    background: #f7f9fb;
    padding: 40px;
    border-radius: 6px;
    margin: 40px 0;
}

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

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 6%;
    background: #f7f9fb;
}

.thanks-content {
    max-width: 640px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #27ae60;
    font-weight: 700;
}

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

.thanks-content .service-name {
    font-size: 20px;
    font-weight: 600;
    color: #2980b9;
    margin: 32px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 6px;
}

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

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

    .hero-content,
    .split-content {
        padding: 60px 6%;
    }

    .hero-image,
    .split-image {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1 1 calc(50% - 24px);
    }

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .split-content h2,
    .section-header-center h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .nav-right {
        gap: 16px;
    }

    .nav-right a {
        font-size: 14px;
    }
}