@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v22/JTURjIg1_i6t8kCHKm45_aZA3gTD_u50.woff2) format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: local('Montserrat Bold'), local('Montserrat-Bold'), url(https://fonts.gstatic.com/s/montserrat/v22/JTURjIg1_i6t8kCHKm45_dJE3gTD_u50.woff2) format('woff2');
}

/* Hier beginnt dein vorhandener CSS-Stil */

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #080D17;
    color: white;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.faq-container {
    width: 90%;
    margin: 0 auto;
}

h1 {
    color: white;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item:not(:last-child) {
    border-bottom: 1px solid #DAB077;
}

.question {
    cursor: pointer;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    color: white;
    background-color: #080D17;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px;
    position: relative;
}

.question::after {
    content: '\25BC'; /* Pfeil nach unten */
    position: absolute;
    right: 10px;
    font-size: 14px; /* Ändere die Schriftgröße nach Bedarf */
}

.answer {
    display: none;
    padding: 10px;
    font-size: 14px;
    color: white;
    line-height: 1.5; 
}

/* Hier endet dein vorhandener CSS-Stil */
