* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background-color: #c29d2f;
}

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

.cookie-reject:hover {
    background-color: #3c3c3c;
}

.navigation {
    background-color: #1a1a1a;
    padding: 1.2rem 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 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.ad-disclosure {
    color: #999999;
    font-size: 0.85rem;
    font-style: italic;
    padding: 0.4rem 1rem;
    background-color: #2c2c2c;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 6rem 4rem 4rem;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

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

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.fleet-showcase {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #666666;
}

.fleet-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fleet-card {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.fleet-image-container {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.fleet-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleet-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.fleet-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555555;
    line-height: 1.7;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.select-vehicle {
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-vehicle:hover {
    background-color: #2c2c2c;
}

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

.booking-info {
    flex: 1;
    padding: 5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-info p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.booking-benefits {
    list-style: none;
    margin-top: 1rem;
}

.booking-benefits li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #e0e0e0;
}

.booking-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

.booking-form-container {
    flex: 1;
    padding: 5rem;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #d0d0d0;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.submit-booking {
    padding: 1.2rem 2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-booking:hover {
    background-color: #c29d2f;
}

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

.trust-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.trust-content {
    flex: 1;
    padding: 5rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #999999;
    margin-top: 1rem;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3c3c3c;
    color: #999999;
}

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

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

    .fleet-card {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .booking-info,
    .trust-content {
        padding: 3rem 2rem;
    }

    .booking-form-container {
        padding: 3rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}