* {
    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: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.header-left .brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #f8f9fa;
}

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

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

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #3498db;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    background: #ddd;
}

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

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.intro-image {
    flex: 1;
    background: #e8e8e8;
}

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

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

.intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 19px;
    color: #666;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    flex: 0 0 45%;
    background: #ddd;
}

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

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

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

.select-service {
    padding: 14px 30px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #3498db;
}

.booking-split {
    display: flex;
    min-height: 80vh;
}

.booking-left {
    flex: 1;
    padding: 80px 60px;
    background: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.booking-left > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #e8e8e8;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #3498db;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.booking-right {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
}

.trust-split {
    display: flex;
    min-height: 70vh;
    background: #ffffff;
}

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

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

.trust-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.trust-image {
    flex: 1;
    background: #ddd;
}

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 70px 60px 30px;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 10px;
}

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

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 30px;
    background: #111;
    margin-bottom: 30px;
    border-left: 3px solid #3498db;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .booking-split,
    .trust-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .booking-left,
    .booking-right,
    .trust-text {
        padding: 50px 30px;
    }

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

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

    .service-image {
        flex: 0 0 250px;
    }

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