

/* --- ABOUT PAGE VALUES GRID --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #D40000;
    transform: translateY(-5px); /* Kleiner Lift-Effekt */
}

.value-card h3 {
    color: #D40000;
    margin-top: 0;
}

.value-card p {
    color: #ffffff;
    line-height: 1.6;
}

/* Layout für die obere Sektion */
.about-hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}

/* Mobile Ansicht: Untereinander */
@media (max-width: 900px) {
    .about-hero-section { flex-direction: column; text-align: center; }
}

/* Dein Grid für die Werte unten */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}