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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.8rem;
    color: #999999;
    padding: 0.4rem 0.8rem;
    border: 1px solid #444444;
    border-radius: 4px;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 4rem;
    background-color: #ffffff;
}

.split-right {
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-content {
    max-width: 550px;
}

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

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555555;
    line-height: 1.8;
}

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

.cta-primary:hover {
    background-color: #333333;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.cta-inline {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: #555555;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.container-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.2rem;
}

.services-showcase {
    display: flex;
    background-color: #f8f9fa;
}

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

.showcase-left {
    background-color: #e8e8e8;
    overflow: hidden;
}

.showcase-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-right {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

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

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2.5rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a1a1a;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #666666;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.benefits-split {
    display: flex;
}

.benefits-split .split-left {
    background-color: #ffffff;
}

.benefits-split .split-right {
    background-color: #e8e8e8;
}

.benefits-content {
    max-width: 550px;
}

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

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555555;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.additional-services {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.service-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.service-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.5rem;
}

.booking-section {
    background-color: #ffffff;
}

.booking-split {
    display: flex;
}

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

.booking-left {
    background-color: #e8e8e8;
    overflow: hidden;
}

.booking-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-right {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #555555;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #dddddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #333333;
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.testimonials {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a1a1a;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
    font-style: normal;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888888;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: #333333;
}

.page-hero {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

.fleet-detail {
    display: flex;
}

.fleet-detail.fleet-reverse {
    flex-direction: row-reverse;
}

.fleet-image,
.fleet-info {
    flex: 1;
}

.fleet-image {
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.fleet-info {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.fleet-detail:nth-child(even) .fleet-info {
    background-color: #f8f9fa;
}

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

.fleet-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
}

.vehicle-features {
    list-style: none;
    margin-bottom: 2rem;
}

.vehicle-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555555;
    position: relative;
}

.vehicle-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #666666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.services-extended {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.extended-services-grid {
    display: flex;
    gap: 2rem;
}

.extended-service {
    flex: 1;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.extended-service img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.extended-content {
    padding: 2rem;
}

.extended-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.extended-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.5rem;
}

.rental-terms {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-hero .hero-split {
    min-height: 70vh;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-split {
    display: flex;
}

.values-content {
    max-width: 550px;
}

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

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
}

.process-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
}

.team-section {
    background-color: #ffffff;
}

.split-container {
    display: flex;
}

.team-content {
    max-width: 550px;
}

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

.team-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-hero {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    background-color: #ffffff;
}

.contact-split {
    display: flex;
}

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
}

.note {
    font-size: 0.95rem;
    color: #888888;
    margin-top: 0.5rem;
}

.contact-additional {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

.contact-directions {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-directions h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.contact-directions p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    max-width: 900px;
    margin: 0 auto;
}

.thanks-hero {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #1a1a1a;
}

.next-steps {
    margin: 2.5rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #555555;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.thanks-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #555555;
}

@media (max-width: 1024px) {
    .hero-split,
    .services-showcase,
    .benefits-split,
    .booking-split,
    .fleet-detail,
    .values-split,
    .split-container,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .split-left,
    .split-right,
    .showcase-left,
    .showcase-right,
    .booking-left,
    .booking-right {
        min-height: 400px;
    }

    .testimonials,
    .service-grid,
    .extended-services-grid,
    .process-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}
