:root {
    --color-primary: #1e3a8a;
    /* Strong Blue like reference */
    --color-secondary: #dc2626;
    /* Urgent Red */
    --color-text: #333333;
    --color-bg-light: #f3f4f6;
    --color-white: #ffffff;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --container-width: 1140px;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #fff;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    /* Schöne Schrift */
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: none;
    /* Nicht mehr ALLES GROSS */
    text-decoration: none;
    letter-spacing: 0.5px;
}

.header-contact {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-call {
    background: var(--color-secondary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.8)), url('../img/hero-bg.jpg');
    /* Fallback color if image missing */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
}

/* Content Sections */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title .divider {
    height: 3px;
    width: 80px;
    background: var(--color-secondary);
    margin: 0 auto;
}

/* Feature Grid (Like Reference "Alle Automarken" etc) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 4px solid var(--color-primary);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Testimonials */
.testimonials {
    background: var(--color-bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #f59e0b;
    margin-bottom: 10px;
}

/* Call to Action Band */
.cta-band {
    background: var(--color-secondary);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.cta-band h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.btn-white {
    background: #fff;
    color: var(--color-secondary);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
}

/* Footer (As per reference) */
footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
    display: inline-block;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
    transition: 0.2s;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .main-header {
        flex-direction: column;
        gap: 15px;
    }
}