/* ==========================================================================
   1. BASIS & RESET
   ========================================================================== */
:root {
    --primary-color: #1952a3;    /* Ihr ursprüngliches Blau */
    --accent-color: #00bfff;     /* DeepSkyBlue */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f4f7f9;         /* Modernes Hellgrau statt LightGray */
    --white: #ffffff;
    --border-color: #d1d5db;
    --danger-color: #ef4444;
}

* {
    box-sizing: border-box; /* Verhindert, dass Padding die Breite sprengt */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    background-image: linear-gradient(white, var(--bg-light));
    color: var(--text-main);
    line-height: 1.6;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
body > header {
    background: url("../images/himmel.jpg") center/cover no-repeat;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-bottom: 30px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.partnerlogo, img {
    width: 200px;
    height: auto;
    border-radius: 5px;
}

/* ==========================================================================
   MODERNER HEADER & NAVIGATION
   ========================================================================== */

body > header {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url("../images/himmel.jpg") center/cover no-repeat;
    border-radius: 0 0 20px 20px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 15px 0;
    margin-bottom: 40px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* Logo links, Nav rechts */
    align-items: center;
}

/* Logo Bereich */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white !important;
}

#logo {
    width: 60px; /* Kompakteres Logo für die Nav-Bar */
    height: 60px;
    border-radius: 50%; /* Rundes Logo wirkt moderner */
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    object-fit: cover;
}

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

.logo-text h1 {
    margin: 0 !important;
    font-size: 1.4rem !important;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 700;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-link {
    color: white !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px); /* Moderner Glas-Effekt */
}

.nav-link:hover {
    background-color: var(--accent-color); /* DeepSkyBlue */
    color: white !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Responsive Design für den Header */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo-area {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   3. KI-TOOL BEREICH (.ai-container)
   ========================================================================== */
.ai-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

.ueberschrift {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Die Card-Struktur */
.config-panel, .result-panel {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    overflow: hidden;
}

.config-panel {
    padding: 25px;
}

.panel-legend {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Eingabefelder */
select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: black !important;
    background-color: white;
}

textarea {
    resize: vertical;
    font-family: inherit;
}

/* Buttons */
.action-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary, .btn-secondary, .btn-danger {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    color: white !important;
}

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

.btn-secondary { background-color: #e2e8f0; color: var(--text-main) !important; }
.btn-secondary:hover { background-color: #cbd5e1; }

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

.status-indicator {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Ergebnis-Fenster */
.result-header {
    background: #f8fafc;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    font-weight: 600;
}

.result-content {
    padding: 20px;
    min-height: 200px;
    max-height: 500px;
    overflow-y: auto;
    white-space: pre-wrap;
    font-size: 1.05rem;
    color: black !important;
    line-height: 1.6;
}

/* ==========================================================================
   4. WEITERE ELEMENTE (Produkt-Grid etc.)
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.product {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    text-align: left;
}

.product.single {
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container { flex-direction: column; text-align: center; }
    .home-container { flex-direction: column; }
    .action-bar { flex-direction: column; align-items: stretch; }
}
/* ==========================================================================
   ZUSÄTZLICHE STYLES FÜR DIE INFO-SEITE
   ========================================================================== */

.intro-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10%;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Grid Layout für die Karten */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
}

.card-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 1rem;
}

/* Schöner Checkmark statt Standard-Bullet */
.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Access Panel (Unten) */
.access-panel {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.access-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.access-item {
    flex: 1;
    min-width: 250px;
}

.cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background-color: var(--accent-color);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: white;
    color: var(--primary-color) !important;
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 8px;
}

.stats {
    text-align: right;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 30px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-main);
    padding: 20px;
    border-top: 2px solid var(--border-color);
}
/* ==========================================================================
   KONTAKT- UND IMPRESSUMS-SEITE
   ========================================================================== */

.contact-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.contact-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

.legal-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-style: italic;
}

.address-block {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.legal-details p {
    margin-bottom: 5px;
    color: var(--text-main);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    gap: 10px;
    font-size: 1.05rem;
}

.contact-item .label {
    font-weight: 600;
    color: var(--text-muted);
    min-width: 80px;
}

.contact-item .value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.tax-id {
    font-family: monospace;
    font-size: 1.2rem;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.disclaimer {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-footer {
    text-align: center;
    margin-top: 40px;
}

.contact-footer p {
    margin-bottom: 10px;
    color: var(--text-muted);
}
 
/* ==========================================================================
   LEGAL-PAGE STYLES (Nutzungsbedingungen & Datenschutz)
   ========================================================================== */

.legal-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    overflow: hidden;
}

.card-header-main {
    background: var(--primary-color);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header-main h2 {
    margin: 0;
    font-size: 1.4rem;
    color: white !important;
}

.legal-content {
    padding: 30px;
}

.preamble {
    background: #f8fafc;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-main);
}

.legal-item {
    margin-bottom: 25px;
}

.legal-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.important-note {
    background: #fffbeb;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #fef3c7;
    color: #92400e;
    margin-top: 10px;
}

.highlight-box {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dcfce7;
}

.highlight-box h3 {
    color: #166534 !important;
    border-bottom-color: #dcfce7;
}

.footer-legal {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-size: 0.9rem;
}

.contact-info {
    text-align: center;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.cta-button-small {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-button-small:hover {
    background-color: var(--accent-color);
}

/* Responsivität */
@media (max-width: 600px) {
    .legal-content {
        padding: 20px;
    }
    .card-header-main {
        padding: 15px;
    }
}

/* ==========================================================================
   HOMEPAGE MODERNISIERUNG
   ========================================================================== */

/* Hero-Sektion */
.hero-section {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 60px;
}

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

.lead-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Services Grid */
.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-main);
    font-size: 1rem;
}

.service-list li::before {
    content: "→";
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Hervorhebung der KI-Karte */
.highlight-card {
    border: 2px solid var(--accent-color);
    background: linear-gradient(to bottom right, white, #f0f9ff);
}

/* Partner Bereich */
.partner-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 15px;
}

.partner-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.partner-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Projekt Highlight Card */
.project-highlight {
    margin-bottom: 60px;
}

.project-card {
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 25px rgba(25, 82, 163, 0.3);
}

.project-text h3 {
    color: white !important;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.project-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.btn-secondary {
    background-color: rgba(255,255,255,0.2);
    color: white !important;
    border: 1px solid white;
}

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

/* Responsive Anpassung */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        text-align: center;
    }
    .project-actions {
        justify-content: center;
        width: 100%;
    }
}
/* ==========================================================================
   MODERNER FOOTER
   ========================================================================== */

footer {
    background-color: #f1f5f9; /* Sehr helles Grau-Blau */
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px 0;
    margin-top: 60px;
    color: var(--text-muted);
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info .company-name {
    font-weight: 700;
    color: var(--primary-color);
}

.footer-tagline {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.8;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Unterster Bereich */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Responsive Footer */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}
/* ==========================================================================
   PRODUKTSEITE MODERNISIERUNG
   ========================================================================== */

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Classic Produkt-Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-image {
    background: #f8fafc;
    padding: 20px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eee;
}

.product-image img {
    width: 120px !important; /* Logos in Karten kompakter */
    height: auto;
}

.product-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.product-content p {
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Innovation Card (Das KI-Tool) */
.innovation-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
    margin-bottom: 60px;
}

.innovation-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.innovation-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.innovation-body {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.innovation-text {
    flex: 2;
    min-width: 300px;
}

.innovation-text p {
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Tech Badges */
.tech-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white !important;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 5px 5px 0;
}

.innovation-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.project-link {
    margin-top: 20px;
    font-weight: 500;
}

.highlight-link {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
}

.highlight-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .innovation-body {
        flex-direction: column;
    }
    .innovation-action {
        width: 100%;
    }
}
/* ==========================================================================
   KONTAKT & IMPRESSUM DESIGNS
   ========================================================================== */

.contact-card {
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.contact-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.legal-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

.address-block {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-main);
}

.company-name {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.legal-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    gap: 10px;
    font-size: 1rem;
}

.detail-item .label {
    color: var(--text-muted);
    font-weight: 500;
}

/* Kontakt Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-item .value {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.email-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.email-link:hover {
    color: var(--accent-color) !important;
    text-decoration: underline;
}

/* Steuer-ID Box */
.tax-box {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: inline-block;
}

.tax-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.tax-id {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Disclaimer Bereich */
.disclaimer {
    background: #fefefe;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed var(--border-color);
}

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-card {
        padding: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LEGAL-PAGE STYLES
   ========================================================================== */

/* Schnelle Navigation */
.legal-nav {
    text-align: center;
    margin-bottom: 30px;
}

.legal-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 15px;
    transition: 0.3s;
}

.legal-nav a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.nav-divider {
    color: var(--border-color);
    margin: 0 10px;
}

/* Karten Design */
.legal-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    overflow: hidden;
    scroll-margin-top: 20px; /* Verhindert, dass Header beim Springen das Element verdeckt */
}

.card-header-main {
    background: var(--primary-color);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header-main h2 {
    margin: 0;
    font-size: 1.4rem;
    color: white !important;
}

.legal-content {
    padding: 30px;
}

/* Details */
.preamble {
    background: #f8fafc;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-main);
}

.legal-item {
    margin-bottom: 25px;
}

.legal-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.important-note {
    background: #fffbeb;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #fef3c7;
    color: #92400e;
    margin-top: 10px;
}

.highlight-box {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dcfce7;
}

.highlight-box h3 {
    color: #166534 !important;
    border-bottom-color: #dcfce7;
}

.footer-legal {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-size: 0.9rem;
}

.contact-info {
    text-align: center;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.cta-button-small {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-button-small:hover {
    background-color: var(--accent-color);
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}
