.faq-section {
    background:skyblue;
    padding: 30px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* MAIN BUTTON */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    background: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT SIDE WRAPPER */
.faq-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-align: left;
}

/* SERIAL NUMBER */
.faq-number {
    color: #0D5FF9;
    font-weight: 700;
    min-width: 45px;
}

/* QUESTION TEXT */
.faq-text {
    text-align: left;
}

/* ICON (RIGHT SIDE) */
.faq-question .icon {
    font-size: 20px;
    color: #0D5FF9;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;

    margin-left: 57px;
    text-align: left;
}