

/* Обнуление стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные стили */
body {
    font-family: "Roboto Condensed", sans-serif;
    padding: 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(../img/photo1720191757.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq {
    width: 100%;
    max-width: 600px;
}

.faq h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 5em;
}

.faq-item {
    background-color: rgb(63, 63, 63);
    border: none;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #ffffff;
}

.faq-answer p {
    padding: 5px 15px 10px 15px;
}

/* Стили для стрелочки */
.arrow {
    transition: transform 0.3s ease;
    color: #ffffff;
}

.arrow.active {
    transform: rotate(180deg);
}
