* {
    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: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e8e8e8;
}

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

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 4px;
    flex: 1;
    text-align: center;
    max-width: 400px;
}

.nav {
    display: flex;
    gap: 32px;
}

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

.nav a:hover {
    color: #4a4a4a;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #1a1a1a;
}

.hero-text {
    max-width: 560px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 36px;
}

.hero-right {
    flex: 1;
    background-color: #2a2a2a;
}

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

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

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

.value-proposition {
    padding: 100px 0;
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 700;
}

.content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.content-right img,
.content-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.fleet-preview {
    padding: 100px 0;
    background: #f8f8f8;
}

.fleet-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.fleet-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.fleet-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.fleet-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.fleet-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.fleet-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 24px 20px;
    flex: 1;
}

.fleet-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #333333;
    transform: translateY(-2px);
}

.service-details {
    padding: 100px 0;
    background: #ffffff;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    padding-bottom: 28px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.service-price {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.booking-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 48px;
}

.booking-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.booking-intro p {
    font-size: 17px;
    color: #cccccc;
}

.booking-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-indicators {
    padding: 100px 0;
    background: #f8f8f8;
}

.trust-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-style: italic;
}

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #999999;
}

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-confirmation {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.service-confirmation strong {
    font-size: 20px;
    color: #1a1a1a;
}

.page-header {
    padding: 80px 0 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.content-wrapper h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 24px;
    line-height: 1.8;
    color: #4a4a4a;
}

.content-wrapper li {
    margin-bottom: 12px;
}

.contact-info {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 15px;
    color: #4a4a4a;
    margin: 0;
}

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

    .hero-left {
        padding: 60px 40px;
    }

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 48px;
    }

    .fleet-cards {
        flex-direction: column;
        align-items: center;
    }

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

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

    .nav {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .ad-disclosure {
        order: -1;
        width: 100%;
        max-width: 100%;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-form {
        padding: 32px 24px;
    }

    .testimonials {
        flex-direction: column;
    }

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