/* Grundstyling für die Sektion */
.instrument-section {
    padding: 20px 20px;
    text-align: center;
    background-color: #b89e4b;
    /* Heller Hintergrund für Kontrast */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.instrument-section h2 {
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    /*text-transform: uppercase;*/
}

/* Flexbox-Container für die Karten */
.instrument-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    /* Abstand zwischen den Karten */
    flex-wrap: wrap;
    /* Zeilenumbruch auf kleinen Bildschirmen */
    max-width: 1200px;
    margin: 0 auto;
}

/* Die einzelnen Karten */
.instrument-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Weicher Schatten */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

/* Hover-Effekt: Karte hebt sich ab */
.instrument-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/*
.instrument-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
    */

.instrument-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.instrument-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}