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

:root {
    --primary-color: #2C5F2D;
    --primary-dark: #1a3a1b;
    --secondary-color: #8B7355;
    --accent-color: #D4AF37;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.navbar {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: var(--bg-light);
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-visual,
.intro-content {
    flex: 1;
}

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

.intro-content {
    padding: 5rem 4rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.trust-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.story-split,
.value-split,
.guarantee-split {
    display: flex;
    align-items: center;
}

.story-split.reverse,
.testimonial-split.reverse,
.values-split.reverse,
.fleet-intro-split.reverse {
    flex-direction: row-reverse;
}

.story-content,
.value-content,
.guarantee-content {
    flex: 1;
    padding: 5rem 4rem;
}

.story-visual,
.value-visual,
.guarantee-visual {
    flex: 1;
}

.story-visual img,
.value-visual img,
.guarantee-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h2,
.value-content h2,
.guarantee-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.story-content p,
.value-content p,
.guarantee-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.value-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.value-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.testimonial-visual {
    flex: 0.4;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.testimonial-content {
    flex: 0.6;
    padding: 4rem;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-muted);
}

.testimonial-alternate {
    background: var(--bg-light);
    padding: 5rem 4rem;
}

.testimonial-large {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    color: var(--text-dark);
}

.testimonial-large cite {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.insight-section {
    background: var(--bg-white);
    padding: 6rem 2rem;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.insight-card {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-reveal {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.services-container h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-dark);
}

.booking-form-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.booking-form-section.hidden {
    display: none;
}

.form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.selected-service {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-cancel {
    padding: 0.8rem;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.urgency-section {
    background: var(--accent-color);
    padding: 4rem 2rem;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.final-testimonial {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

.final-testimonial blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    color: var(--text-dark);
}

.final-testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-muted);
}

.cta-final {
    background: var(--primary-color);
    padding: 6rem 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    color: var(--text-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    opacity: 0.9;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--primary-color);
    color: white;
}

.btn-cookie:hover {
    background: var(--primary-dark);
}

.btn-cookie-alt {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

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

.about-hero-content {
    flex: 1;
    padding: 5rem 4rem;
    background: var(--bg-light);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-hero-visual {
    flex: 1;
}

.about-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.about-story {
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.about-story-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-story-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-split {
    display: flex;
    align-items: center;
}

.values-visual,
.values-content {
    flex: 1;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.values-content {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

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

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.team-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.commitment-split {
    display: flex;
    align-items: center;
}

.commitment-content {
    flex: 1;
    padding: 5rem 4rem;
}

.commitment-visual {
    flex: 1;
}

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

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.commitment-list {
    list-style: none;
    margin-top: 2rem;
}

.commitment-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.commitment-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.recognition {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

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

.recognition-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.award-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.award-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.award-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-cta {
    background: var(--primary-color);
    padding: 5rem 2rem;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-hero {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

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

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.fleet-intro-split {
    display: flex;
    align-items: center;
}

.fleet-intro-content {
    flex: 1;
    padding: 5rem 4rem;
}

.fleet-intro-visual {
    flex: 1;
}

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

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

.fleet-intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.fleet-services {
    padding: 4rem 2rem;
}

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

.fleet-item {
    display: flex;
    margin-bottom: 4rem;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.fleet-image {
    flex: 1;
}

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

.fleet-details {
    flex: 1;
    padding: 3rem;
}

.fleet-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fleet-models {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.fleet-details > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fleet-features {
    list-style: none;
    margin: 1.5rem 0;
}

.fleet-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-light);
}

.fleet-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.fleet-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.fleet-standards {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

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

.standards-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.standard-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.standard-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.standard-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.services-cta {
    background: var(--primary-color);
    padding: 5rem 2rem;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-hero {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.detail-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-map {
    flex: 1;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    color: var(--text-dark);
}

.contact-faq {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.faq-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    background: var(--primary-color);
    padding: 5rem 2rem;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thanks-hero {
    padding: 6rem 2rem;
    background: var(--bg-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-contact {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.thanks-contact p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-container strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .story-split,
    .testimonial-split,
    .value-split,
    .guarantee-split,
    .values-split,
    .fleet-intro-split,
    .commitment-split,
    .about-hero-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .story-split.reverse,
    .testimonial-split.reverse,
    .values-split.reverse,
    .fleet-intro-split.reverse {
        flex-direction: column;
    }

    .fleet-item,
    .fleet-item.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .intro-content h2,
    .story-content h2,
    .value-content h2 {
        font-size: 2rem;
    }

    .trust-container,
    .insight-grid,
    .team-grid,
    .awards-grid {
        flex-direction: column;
    }

    .testimonial-content blockquote,
    .testimonial-large {
        font-size: 1.3rem;
    }

    .services-grid {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-content,
    .intro-content,
    .story-content,
    .value-content,
    .testimonial-content,
    .about-hero-content,
    .fleet-intro-content,
    .fleet-details,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-item h3 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .standards-grid {
        flex-direction: column;
    }

    .standard-item {
        flex: 1 1 100%;
    }

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