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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-center a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-center a:hover {
    color: #1a1a1a;
}

.nav-right .ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #ddd;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    background-color: #e8e8e8;
}

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

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.intro-content-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.services-section {
    background-color: #f5f5f5;
    padding: 6rem 2rem;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-header p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e8e8e8;
}

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

.service-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.4rem 0;
    color: #4a4a4a;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    color: #1a1a1a;
    font-weight: bold;
    margin-right: 0.6rem;
}

.service-pricing {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

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

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: auto;
}

.select-service:hover {
    background-color: #333333;
}

.booking-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
}

.booking-content-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #fafafa;
}

.booking-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-content-left p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.cta-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

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

.booking-info-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-info-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.info-card {
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #1a1a1a;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.trust-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
}

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

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

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

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

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

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

.page-hero {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #bbb;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
}

.about-image-left {
    flex: 1;
    background-color: #e8e8e8;
}

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

.about-content-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.values-section {
    background-color: #f5f5f5;
    padding: 6rem 2rem;
}

.values-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
}

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

.team-content-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.team-content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.team-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.commitment-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.commitment-content {
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.fleet-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto 6rem;
}

.fleet-content-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleet-content-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.fleet-content-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.fleet-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.fleet-listing {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fleet-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
}

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

.fleet-card-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

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

.fleet-card-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.fleet-card-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.specifications {
    margin-bottom: 2rem;
}

.specifications h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.specifications ul {
    list-style: none;
}

.specifications li {
    padding: 0.5rem 0;
    color: #4a4a4a;
}

.specifications li:before {
    content: "•";
    color: #1a1a1a;
    font-weight: bold;
    margin-right: 0.8rem;
}

.pricing-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2rem;
}

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

.rate-weekly,
.rate-monthly {
    font-size: 0.95rem;
    color: #666;
}

.rental-terms {
    background-color: #f5f5f5;
    padding: 6rem 2rem;
    margin-top: 6rem;
}

.rental-terms h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

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

.term-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
}

.term-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.term-item ul {
    list-style: none;
}

.term-item li {
    padding: 0.5rem 0;
    color: #4a4a4a;
}

.term-item li:before {
    content: "→";
    margin-right: 0.8rem;
    color: #1a1a1a;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto 6rem;
}

.contact-info-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #fafafa;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.location-notes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.location-notes p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.contact-map-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-map-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.response-info {
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #1a1a1a;
}

.response-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.response-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.directions-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.directions-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 6px;
}

.direction-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.direction-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-hero {
    background-color: #f5f5f5;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.confirmation-details {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.confirmation-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.confirmation-card h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.step-timeline {
    margin-bottom: 3rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.step-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.step-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.booking-reference {
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.booking-reference p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.selected-vehicle {
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-info-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto 6rem;
}

.info-left {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #fafafa;
}

.info-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.info-block ul {
    list-style: none;
    margin-top: 1rem;
}

.info-block li {
    padding: 0.5rem 0;
    color: #4a4a4a;
}

.info-block li:before {
    content: "•";
    margin-right: 0.8rem;
    color: #1a1a1a;
    font-weight: bold;
}

.info-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.contact-support {
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #1a1a1a;
}

.contact-support h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-support p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.contact-support a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

.next-steps {
    max-width: 900px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
    text-align: center;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.next-steps p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.next-steps a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-section a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .booking-split,
    .about-split,
    .team-split,
    .fleet-intro-split,
    .fleet-card,
    .contact-split,
    .thanks-info-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .fleet-card.reverse {
        flex-direction: column;
    }

    .hero-content-left h1,
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-header h2,
    .trust-section h2,
    .values-section h2 {
        font-size: 2.2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-split,
    .trust-grid,
    .terms-grid,
    .directions-grid {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }
}