.sc_faq {
    padding: 40px 10% 0 10%;
}

/* Das Standard-Dreieck verstecken */
details summary::-webkit-details-marker {
    display: none;
}

.sc_faq hr {
    margin-bottom: 2rem;
    border: 0;
    height: 3px;
    background:rgba(79, 85, 252, 0.5);
}

.sc_faq details {
    margin-bottom: 25px;
    padding: 1rem 1.6rem;
    border: 3px solid rgba(79, 85, 252, 0.5);
    border-radius: 8px;
    box-shadow: 0px 0px 0px rgba(79, 85, 252, 0.5);

    background-color: rgba(0, 132, 255, 0.1);
}

.sc_faq details:hover {
    border-color: rgb(79, 85, 252);
    box-shadow: 0px 0px 10px rgb(79, 85, 252);
}

.sc_faq details summary {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    font-weight: 600;
}

.sc_faq details p {
    margin-top: 1rem;
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .sc_faq {
        padding: 0px 5% 20px 5%;
    }

    summary {
        padding: 0;
    }

    .sc_faq details {
        padding: 0.5rem 1rem 1rem 1rem;
    }

    .sc_faq details p {
        margin: 0 0.5rem 1rem 1rem;
    }
}

@media (min-width: 769px) and (max-width: 950px) {
   .sc_faq {
        padding: 0px 5% 20px 5%;
    }

    .sc_faq details summary{
        font-size: 1.4rem;
    }

    .sc_faq details p {
        font-size: 1.2rem;
    }

}

@media (min-width: 951px) and (max-width: 1200px) {
    .sc_faq {
        padding: 0px 5% 20px 5%;
    }
}



summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

/* Das Plus-Zeichen erstellen */
summary::after {
    content: '+';
    font-size: 1.5em;
    font-weight: normal;
}

/* Das Minus-Zeichen anzeigen, wenn offen ist */
details[open] summary::after {
    content: '−'; /* Das ist ein echtes Minus-Zeichen */
}

details[open] summary {
    border-bottom: none;
    color: #63aeff; /* Deine Wunschfarbe für die offene Frage */
}