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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie, .btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.navigation {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

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

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s ease;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.intro-split-left {
    flex: 1;
}

.intro-split-left img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.intro-split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-split-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-split-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #546e7a;
}

.services-preview {
    padding: 80px 40px;
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex: 1 1 380px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
}

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

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.trust-builder {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

.trust-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 400px;
}

.trust-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.testimonials-section {
    padding: 80px 40px;
    background: #2c3e50;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonial-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 8px;
    flex: 1 1 340px;
    max-width: 400px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #bdc3c7;
    font-style: normal;
}

.booking-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.booking-info h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.booking-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #dcdde1;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 36px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #ecf0f1;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #546e7a;
    text-align: center;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

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

.footer-column ul li a:hover {
    color: #e74c3c;
}

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

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

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

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

    .intro-section,
    .trust-builder {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .booking-container {
        padding: 30px;
    }
}