* {
    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;
    overflow-x: hidden;
}

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 520px;
}

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

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
}

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

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #b2bec3;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-section {
    padding: 100px 60px;
    background: #fff;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header p {
    font-size: 20px;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    transition: transform 0.3s;
}

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

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    background-color: #95a5a6;
}

.service-info {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.form-split {
    display: flex;
    min-height: 650px;
}

.form-content {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.form-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: border-color 0.3s;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255,255,255,0.15);
}

.booking-form select {
    cursor: pointer;
}

.booking-form select option {
    background: #2c3e50;
    color: #fff;
}

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

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

.form-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #636e72;
}

.trust-split {
    display: flex;
    min-height: 450px;
}

.trust-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ecf0f1;
}

.trust-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #555;
}

.trust-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: #2c3e50;
    font-size: 15px;
}

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

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

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

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

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

.cookie-btn.reject:hover {
    background: #7f8c8d;
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

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

    .hero-content,
    .intro-text,
    .form-content,
    .trust-text {
        padding: 50px 30px;
    }

    .services-section {
        padding: 60px 30px;
    }
}