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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #1a252f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ecf0f1;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    color: #95a5a6;
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #3498db;
}

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

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

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

.hero-left p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.intro-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.services-grid {
    padding: 100px 20px;
    background: #ffffff;
}

.services-grid h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 350px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px 24px;
    color: #1a252f;
}

.service-card p {
    margin: 0 24px 24px 24px;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.btn-select {
    padding: 10px 24px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select:hover {
    background: #5568d3;
    transform: scale(1.05);
}

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

.split-left {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-right {
    flex: 1;
    padding: 80px 60px;
    background: #ecf0f1;
}

.split-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.split-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.benefits-list {
    list-style: none;
    margin-top: 32px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.booking-form-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.booking-form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a252f;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.booking-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 24px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

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

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

.disclaimer-text {
    font-size: 12px;
    line-height: 1.5;
    color: #7f8c8d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    color: #7f8c8d;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-cookie {
    background: #667eea;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.btn-cookie.secondary {
    background: transparent;
    border: 2px solid #95a5a6;
    color: #95a5a6;
}

.btn-cookie.secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: transparent;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 600px;
}

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

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-right {
        min-height: 300px;
    }

    .why-choose-split {
        flex-direction: column;
    }

    .split-left {
        min-height: 300px;
    }

    .split-right {
        padding: 60px 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .nav {
        gap: 15px;
        font-size: 14px;
    }

    .services-layout {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }
}