/* --- Container für alle Leistungsbereiche --- */
.leistungen-section {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* --- Card Layout --- */
.leistung-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 25px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 3px solid #3c2415;
}

.leistung-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

/* --- Titel im Card --- */
.leistung-card h2 {
    color: #3c2415;
    margin-top: 0;
    font-size: 1.9rem;
    text-align: center;
}

.leistung-card h3 {
    color: #3c2415;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* --- Listen im Card --- */
.leistung-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leistung-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(60, 36, 21, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

/* Icon vor jedem Punkt */
.leistung-card ul li::before {
    content: "✔";
    font-weight: bold;
    color: #3c2415;
}

/* --- Highlight Box (z. B. Zitate oder Hinweise) --- */
.leistung-highlight {
    background: #3c2415;
    color: #f5f5f5;
    font-size: 1.2rem;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* --- Buttons für Kursinfos oder PDF-Downloads --- */
.leistung-btn {
    display: inline-block;
    background: #3c2415;
    color: #f5f5f5;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.leistung-btn:hover {
    background: #2d1a10;
    transform: translateY(-4px);
}

/* --- Abschnittstitel wie "Physiotherapie" --- */
.leistung-heading {
    font-size: 2.4rem;
    color: #3c2415;
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: 15px;
    text-align: center;
}

/* --- Animation beim Scrollen (optional) --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.leistung-card,
.leistung-highlight {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Verzögerung für mehrere Cards */
.leistung-card:nth-child(1) { animation-delay: 0.1s; }
.leistung-card:nth-child(2) { animation-delay: 0.2s; }
.leistung-card:nth-child(3) { animation-delay: 0.3s; }
.leistung-card:nth-child(4) { animation-delay: 0.4s; }
