.faq-main-section {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.faq-header-container {
    max-height: 100px;
    width: 100%;
    display: flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: flex-start;
    background-color: #1F1F1F;
}

.faq-header-container h1 {
    margin: auto 10px;
    font-size: 40px;
    font-weight: 700;
    color: white;
}

#faq-icon {
    height: 50px;
}

.questions-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    overflow-y: auto;
}

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

.accordion-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #e6b800;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
    height: 16px;
    width: 16px;
    margin-left: 10px;
}

.accordion-header.active .arrow {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fafafa;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    padding: 15px 20px;
}

