.andmall-faqs-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.am-tab-faqs {
    background: #FAF7F0;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.am-tab-buttons {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 6px;
}

.am-tab-button {
    background: unset;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
}

.am-tab-faqs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.am-tab-button.active {
    color: #93278F;
}

.am-tab-faqs-wrapper strong {
    color: #000;
    font-size: 18px;
}

.am-contact-wrapper strong {
    font-size: 18px;
}

.am-button {
    background: #93278F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
}

.am-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 25px;
}


/* Faq Accordion */
.faq-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    padding-bottom: 5px;
    border-bottom: 1px solid #0000001f;
}

.faq-number {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
}

.faq-content-container {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    gap: 10px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    gap: 10px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.faq-icon {
    display: flex;
}

.faq-answer {
    font-size: 14px;
    color: #5f5f5f;
    padding-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .andmall-faqs-container {
        grid-template-columns: 1fr;
    }

    .tab-pane h3 {
        font-size: 20px;
    }
}