/*
JP LKW & KR - Professionelles Redesign
=========================================
*/

:root {
    --primary-color: #0a2849; /* Leicht entsättigtes, dunkleres Blau */
    --secondary-color: #ffb700; /* Kräftiges, warmes Gelb */
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --text-dark: #2c3e50; /* Weicheres Schwarz */
    --text-light: #f8f9fa;
    --border-color: #e9ecef; /* Helleres Grau für feine Linien */
    --shadow-color: rgba(10, 40, 73, 0.1); /* Schatten basierend auf Primärfarbe */

    --font-sans-serif: 'Roboto', sans-serif;
    --font-serif: 'Roboto Slab', serif;
}

/* === Globale Stile & Typografie === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* Verhindert horizontales Scrollen auf beiden Elementen */
}

body {
    font-family: var(--font-sans-serif);
    margin: 0;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative; /* Wichtig für die Positionierung des Men��s */
}

.container {
    max-width: 1140px; /* Etwas schmaler für bessere Lesbarkeit */
    margin: auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); } /* Responsive Schriftgröße */
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 4rem; }
h3 { font-size: 1.75rem; }

section {
    padding: 100px 0;
}

/* === Header & Navigation === */
.main-header {
    background: var(--background-white);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 130px;
    margin: -35px 0; /* Negativer Margin, damit das Logo überlappt */
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem; /* Abstand zwischen den Links */
}

.main-nav a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 8px;
}

.main-nav a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.main-nav a.active { /* Aktiver Zustand für die aktuelle Seite */
    background-color: var(--primary-color);
    color: var(--background-white);
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-switcher a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.lang-switcher a.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}


/* === Hero Section === */
.hero {
    color: var(--text-light);
    text-align: center;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero h1 {
    color: var(--background-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px var(--shadow-color);
}

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

.btn-primary:hover {
    background-color: #ffc107;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.4);
}

/* === About Section & Animation === */
.about-section {
    background: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.truck-animation-container {
    width: 100%;
    max-width: 450px;
    margin: auto;
    aspect-ratio: 16 / 9;
}

.truck-animation-container svg {
    width: 100%;
    height: 100%;
}

.truck-body { animation: drive-truck 8s ease-in-out infinite; }
.road-lines { animation: move-lines 0.8s linear infinite; }
.crane-arm { transform-origin: 170px 130px; animation: move-crane 8s ease-in-out infinite; }

@keyframes drive-truck {
    0% { transform: translateX(-150%); }
    10% { transform: translateX(0%); }
    40% { transform: translateX(0%); }
    50% { transform: translateX(150%); }
    50.01% { transform: translateX(-150%); }
    100% { transform: translateX(-150%); }
}
@keyframes move-lines {
    from { transform: translateX(0); }
    to { transform: translateX(-100px); }
}
@keyframes move-crane {
    0%, 10%, 40%, 50%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(5deg); }
}

/* === Benefits Section === */
.benefits-section {
    background: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    background: var(--background-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    height: 64px;
    width: 64px;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* === Services Section === */
.services-section {
    padding-bottom: 50px; /* Weniger Padding unten, da Karten Schatten haben */
}

.services-grid-col-2 {
    display: grid;
    gap: 3rem;
}

.service-card-detailed {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: stretch; /* Stellt sicher, dass beide Spalten gleich hoch sind */
    background: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-detailed:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px var(--shadow-color);
}

.service-card-detailed:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.service-image {
    overflow: hidden; /* Verhindert, dass das Bild aus dem Container ragt */
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card-detailed:hover .service-image img {
    transform: scale(1.05); /* Leichter Zoom-Effekt beim Hover */
}

.service-card-detailed:nth-child(even) .service-image {
    order: 2;
}

.service-text {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* === Call to Action (CTA) Section === */
.cta-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(45deg, var(--primary-color) 0%, #1a3b6c 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--background-white);
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
}


/* === Contact Section === */
.contact-section {
    background: var(--background-light);
    text-align: center;
}

.contact-section .container > p {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    text-align: left;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(255, 183, 0, 0.3);
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    text-align: center;
}
.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-details {
    margin-top: 3rem;
    font-size: 1.1rem;
    line-height: 2;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* === Professional Contact Page Styles === */
.contact-section.professional {
    background-color: var(--background-light);
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: var(--text-dark);
    opacity: 0.8;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.contact-form-container {
    background: var(--background-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px var(--shadow-color);
}

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

.contact-form .form-group i {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    color: var(--primary-color);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding-left: 3.5rem;
}

.contact-form .form-group input:focus + i,
.contact-form .form-group textarea:focus + i {
    opacity: 1;
}

.contact-details-card {
    background: linear-gradient(135deg, var(--primary-color), #1a3b6c);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px var(--shadow-color);
    text-align: left;
}

.contact-details-card h3 {
    color: var(--background-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-details-card .seo-text {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-info p:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-info i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 1.5rem;
    width: 25px;
    text-align: center;
}

.contact-info a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.qr-code-container {
    margin-top: 2.5rem;
    text-align: center;
}

.qr-code-container img {
    display: block;
    margin: 0 auto 1.5rem auto;
    max-width: 180px;
    border-radius: 8px;
    border: 5px solid var(--background-white);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.btn-secondary:hover {
    background-color: #ffc107;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.4);
}

/* === Professional Imprint Page Styles === */
.professional-imprint {
    background-color: var(--background-light);
    padding: 100px 0;
}

.imprint-header {
    text-align: center;
    margin-bottom: 4rem;
}

.imprint-content-card {
    background: var(--background-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px var(--shadow-color);
    max-width: 800px;
    margin: 0 auto;
}

.imprint-content-card h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.imprint-content-card h3:first-child {
    margin-top: 0;
}

.imprint-content-card p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.imprint-content-card a {
    color: var(--primary-color);
    font-weight: bold;
}

.imprint-content-card a:hover {
    color: var(--secondary-color);
}

/* === Professional Fuhrpark Page Styles === */
/* === Professional Fuhrpark Page Styles === */
.professional-fuhrpark-header {
    background-image: linear-gradient(rgba(10, 40, 73, 0.85), rgba(10, 40, 73, 0.85)), url('../images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-light);
    padding: 100px 0;
}

.professional-fuhrpark-header h1 {
    color: var(--background-white);
    font-size: 3.5rem;
}

.professional-fuhrpark-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.professional-fuhrpark-intro {
    padding: 100px 0;
    background-color: var(--background-white);
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--background-light);
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.professional-fahrzeug-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.fahrzeug-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.fahrzeug-image-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.fahrzeug-image-placeholder {
    width: 100%;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.fahrzeug-image-placeholder img {
    max-width: 100%;
    height: auto;
    padding: 1rem;
}

.key-features {
    width: 100%;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.key-features h4 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.key-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.key-features i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.fahrzeug-info-container {
    padding: 3rem;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.fahrzeug-info-container h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vehicle-description {
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.spec-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-text strong {
    font-weight: 700;
    color: var(--primary-color);
}

.spec-text span {
    opacity: 0.9;
}

.spec-ideal-for {
    grid-column: 1 / -1;
    background-color: #fffbe6;
}

.spec-ideal-for .spec-icon {
    color: #ffb700;
}

@media (max-width: 992px) {
    .fahrzeug-details-grid {
        grid-template-columns: 1fr;
    }
    .fahrzeug-image-container {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
    .spec-ideal-for {
        grid-column: auto;
    }
}

@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
}

/* === Footer === */
.main-footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.main-footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* === Fuhrpark Page Specific Styles === */
.fuhrpark-header {
    background-image: linear-gradient(rgba(26, 58, 93, 0.7), rgba(26, 58, 93, 0.7)), url('images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.fuhrpark-header h1 {
    color: var(--background-white);
    font-size: 3.5rem;
}

.fuhrpark-intro {
    padding: 80px 0;
    text-align: center;
}

.fuhrpark-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.fahrzeug-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.fahrzeug-details {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.fahrzeug-image-placeholder {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.fahrzeug-image-placeholder svg {
    width: 100%;
    height: auto;
}

.fahrzeug-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.tech-specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.tech-specs-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.tech-specs-table tr:hover td {
    background-color: #fdfaf1;
}

.tech-specs-table tr:last-child td {
    border-bottom: none;
}

.tech-specs-table td:first-child {
    font-weight: bold;
    color: var(--primary-color);
    width: 35%;
}


/* === Scroll Animation === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive Design & Burger Menu === */
.burger-menu {
    display: none; /* Standardmäßig auf dem Desktop ausblenden */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.burger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .about-content { gap: 2rem; }
    .main-nav { display: none; }
    .lang-switcher {
        position: absolute;
        top: 100%;
        right: 1rem;
        background: var(--background-white);
        padding: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px var(--shadow-color);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .burger-menu { display: flex; }
    .burger-menu.is-active + .lang-switcher {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
    }

    section { padding: 60px 0; }
    h2 { margin-bottom: 2.5rem; }

    .logo img {
        height: 100px;
        margin: -25px 0;
    }

    .main-header .container {
        position: relative;
    }

    .main-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--background-white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform 0.4s ease-in-out;
        transform: translateX(100%); /* Startet außerhalb des Bildschirms */
        z-index: 1005;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    .lang-switcher {
        position: static;
        margin: 2rem 0 0 0;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .burger-menu.is-active .burger-bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu.is-active .burger-bar:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.is-active .burger-bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .about-content, .service-card-detailed, .service-card-detailed:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .service-card-detailed:nth-child(even) .service-image {
        order: 0; /* Reset order for mobile */
    }
    .service-text { padding: 2rem 1.5rem; }
    .hero { padding: 80px 0; background-attachment: scroll; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    
    .fuhrpark-header h1 { font-size: 2.5rem; }
    .fahrzeug-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .fahrzeug-info h3 { font-size: 2rem; }
    .tech-specs-table td { padding: 1rem; }
}