* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #455A64;
    --accent: #F5B800;
    --light: #f8f9fa;
    --white: #ffffff;
    --dark: #2c3e50;
    --gray: #6c757d;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}
.header {
    background: var(--white);
    color: var(--dark);
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 4px solid var(--accent);
}
.logo-container {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
}
.logo-container img {
    width: 100%;
    height: auto;
}
.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.header .subtitle {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--dark);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.intro-section {
    background: var(--white);
    padding: 4rem 1rem;
}
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}
.intro-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.intro-content p {
    margin-bottom: 1.2rem;
}
.intro-content strong {
    color: var(--primary);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.feature-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.feature-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}
.section {
    padding: 4rem 1rem;
}
.section-alt {
    background: var(--light);
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.product-image-container {
    width: 100%;
    height: 250px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid var(--light);
}
.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-fallback {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}
.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}
.product-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex: 1;
}
.product-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #d9a500);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}
.product-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(245, 184, 0, 0.4);
}

/* Zielgruppenspezifische Bereiche */
.target-group-section {
    scroll-margin-top: 100px;
}
.target-group-header {
    margin-bottom: 2rem;
}
.target-group-image {
    width: 100%;
    max-width: 1210px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 2rem;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Spezielle Verkleinerung für Privat-Bild */
#privat .target-group-image {
    max-width: 774px; /* 64% von 1210px (80% x 80%) */
}
.target-group-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}
.intro-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 500;
}
.interview-box {
    background: #fff9e6;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}
.interview-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.interview-box p {
    margin-bottom: 0.8rem;
}
.interview-box em {
    display: block;
    color: var(--dark);
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid var(--accent);
    margin-top: 0.5rem;
}
.benefits-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}
.benefits-list li {
    margin-bottom: 0.8rem;
    color: var(--dark);
}
.info-box {
    background: var(--light);
    border: 2px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}
.info-box strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}
.comparison-box {
    background: var(--white);
    border: 2px solid var(--light);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}
.comparison-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}
.comparison-box ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}
.comparison-box p {
    margin-top: 1rem;
    font-style: italic;
    color: var(--gray);
}
.text-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.text-link:hover {
    color: var(--primary);
    text-decoration: underline;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #d9a500);
    color: var(--primary);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(245, 184, 0, 0.3);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 184, 0, 0.5);
}
.cta-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light);
}

/* News-Karten */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.news-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.news-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}
.news-date {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}
.news-description {
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.news-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.news-link:hover {
    color: var(--primary);
}
.news-info {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 1rem 1.5rem;
    text-align: center;
}
.footer-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.footer-nav-link {
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}
.footer-nav-link:hover {
    color: var(--accent);
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow-y: auto;
}
.modal-content {
    background: var(--white);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}
.close {
    color: var(--gray);
    float: right;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}
.close:hover {
    color: var(--primary);
}
.modal h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.modal h3 {
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}
.modal p {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.modal ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .header h1 { font-size: 1.8rem; }
    .products-grid { grid-template-columns: 1fr; }
    .target-group-image { 
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }
    .intro-text {
        font-size: 1.05rem;
    }
    .interview-box {
        padding: 1rem;
    }
    .benefits-list {
        margin-left: 1.5rem;
    }
}
