:root {
    --primary-red: #d32f2f;
    --dark-red: #b71c1c;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
}
header {
    background-color: var(--white);
    border-bottom: 3px solid var(--primary-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}
.vector-logo-wrapper {
    display: inline-block;
    max-width: 480px;
}
.vector-logo-wrapper svg {
    display: block;
    height: 52px; /* Vorher 40px - hier wird das gesamte Logo größer skaliert */
    width: auto;
    max-width: 100%;
}
.phone-badge {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
}
.job-badge {
    background-color: #2e7d32;
    color: var(--white);
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}
nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: color 0.2s;
    cursor: pointer;
}
nav a:hover {
    color: var(--primary-red);
}
.slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-color: #222;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.slide.active {
    opacity: 1;
}
.slide-content-box {
    background: rgba(255, 255, 255, 0.92);
    padding: 30px 50px 30px 40px;
    max-width: 750px;
    margin-left: 5%;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.slide-content-box h2 {
    color: var(--primary-red);
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.slide-content-box p {
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: var(--primary-red);
}
.stats-bar {
    background-color: var(--light-bg);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.stat-item img {
    height: 55px;
    width: auto;
    object-fit: contain;
}
.stat-item h3 {
    font-size: 1.25rem;
    color: var(--primary-red);
    text-transform: uppercase;
}
.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}
.content-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.about-text {
    flex: 1;
    min-width: 300px;
}
.about-siegel {
    flex: 0 0 180px;
    text-align: center;
}
.about-siegel img {
    max-width: 150px;
    height: auto;
}
.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    border-left: 5px solid var(--primary-red);
    padding-left: 15px;
}
.content-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-light);
}
.cta-banner {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}
.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}
.btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-red);
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn:hover {
    background-color: #f0f0f0;
}
.map-section {
    width: 100%;
    height: 400px;
    background-color: #eee;
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: var(--white);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    border: none;
    background: none;
}
.modal-close:hover {
    color: var(--primary-red);
}
.modal-content h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.modal-content p, .modal-content ul {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}
footer {
    background-color: var(--dark-bg);
    color: #b0b0b0;
    padding: 50px 20px 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 8px;
    display: inline-block;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
}