/* --- FAQ-GRID (Contact Page) --- */
.faq-grid {
    display: grid;
    /* Automatisches Layout: 300px Mindestbreite pro Karte */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.faq-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

/* Hover-Effekt für die Karten */
.faq-item:hover {
    border-color: #D40000;
}

.faq-item .question {
    color: #00FF00; /* Kontrast zum Portfolio, hebt Fragen hervor */
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}

.faq-item .answer {
    color: #ffffff;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Lösche das hier komplett aus contact.css, da es die Flexibilität blockiert: */
.contact-section h1, .contact-section h2 {
    color: #ffffff; 
}

label {
    color: #ffffff !important;
}


/* Verlinkung zum Impressum im Footer/Kontakt */
.legal-link {
    color: #D40000; /* Dein Ninja-Rot */
    text-decoration: none;
    font-weight: bold;
}

.legal-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* --- KONTAKT-LINKS (E-Mail & Telefon) --- */

/* Standard-Zustand: In Rot oder Weiß (je nachdem, was dir besser gefällt) */
.contact-section a:not(.form-button):not(.view-all-button),
.contact-section p a {
    color: #D40000; /* Hier auf dein Ninja-Rot setzen */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover-Zustand: Weiß bei Berührung */
.contact-section a:not(.form-button):not(.view-all-button):hover,
.contact-section p a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* --- KONTAKT-DETAIL-STYLING --- */
.contact-detail {
    margin-bottom: 20px;
}

.contact-value {
    color: #ffffff; /* Weiß für gute Lesbarkeit */
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #D40000; /* Ninja-Rot beim Hover */
    text-decoration: underline;
}

.contact-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

.label {
    margin: 5px 0 0 0;
    color: #888; /* Ein dezentes Grau für das Label */
    font-size: 0.9em;
}