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

.navbar {
    background: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-ad-notice {
    color: #f39c12;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f39c12;
}

.hero-split {
    min-height: 90vh;
}

.hero-content {
    display: flex;
    min-height: 90vh;
}

.hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #f8f9fa;
}

.hero-text-side h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.hero-text-side p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
}

.hero-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #7f8c8d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #95a5a6;
}

.split-intro {
    padding: 5rem 0;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

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

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

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

.split-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.services-showcase {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.services-header p {
    font-size: 1.15rem;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-details {
    padding: 1.5rem;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.service-details p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e74c3c;
}

.cta-split {
    padding: 5rem 0;
}

.booking-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.trust-section {
    padding: 5rem 2rem;
    background: #fff;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a2e;
}

.trust-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.trust-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #1a1a2e;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
    color: #34495e;
}

.page-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.page-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.page-content ul li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

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

    .hero-text-side h1 {
        font-size: 2.5rem;
    }

    .split-text h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .hero-text-side {
        padding: 2rem;
    }

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

    .split-text {
        padding: 2rem;
    }

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

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