* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #242729;
}

.faq-section {
    padding: 10px;
    background-color: #181a1b;
    margin: 25px auto;
    border-radius: 5px;
    width: 60%;
}

.faq-container {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}

.faq-item {
    background-color: #242729;
    padding: 15px;
    border-radius: 5px;
    color: #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: max-height 0.3s ease, transform 0.3s ease;
    max-height: 60px; 
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-title {
    font-size: 1.2em;
    color: #00b1dd;
    margin: 0;
}

.faq-arrow {
    font-size: 1.5em;
    color: #00b1dd;
    transition: transform 0.3s ease;
}

.faq-content {
    font-size: 1em;
    color: #ddd;
    margin-top: 10px;
    display: none;
}

@media (max-width: 600px) {
    .faq-section{
        width: 95%;
    }
    .faq-title {
    font-size: 16px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .faq-section{
        width: 90%;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .faq-section{
        width: 80%;
    }
}

@media (min-width: 1201px) and (max-width: 1500px) {
    .faq-section{
        width: 70%;
    }
}
