.qa {
    padding: 100px 0;
}

.qa__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.qa__left-container {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.qa__section-title {
    position: relative;
    padding-bottom: 15px;
}

.qa__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(166deg, rgba(237, 85, 116, 1) 0%, rgba(217, 54, 87, 1) 100%);
    border-radius: 2px;
}

.qa__view-all-btn {
    padding: 15px 40px;
    margin-top: 20px;
    background: linear-gradient(128.21deg, #ED5574 -17.05%, #D93657 72.02%);
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0px 4px 10.8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.qa__view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Right Container */
.qa__right-container {
    flex: 1;
    width: 100%;
    max-width: 585px;
}

.qa__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qa__item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 9px 16px;
    gap: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 30px;
}

.qa__item:hover {
    box-shadow: 0px 4px 35.6px #CACACA;
    transform: translateY(-2px);
}

.qa__item-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(128.21deg, #ED5574 -17.05%, #D93657 72.02%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    box-shadow: 0px 2px 8px rgba(217, 54, 87, 0.3);
}

.qa__item-title {
    flex: 1;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    color: #3F3E4C;
    margin: 0;
}

.qa__item-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    color: #D93657;
}

/* Responsive Design */
@media (max-width: 1099px) {
    .qa {
        padding: 60px 0;
    }

    .qa__container {
        flex-direction: column;
        align-items: center;
        gap: 26px;
    }

    .qa__left-container {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .qa__section-title {
        font-size: 32px;
    }

    .qa__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .qa__section-subtitle {
        font-size: 16px;
    }

    .qa__view-all-btn {
        padding: 12px 30px;
        font-size: 18px;
        margin: 0 auto;
    }

    .qa__right-container {
        max-width: 100%;
        padding: 0 16px;
    }

    .qa__item {
        padding: 15px 20px;
        gap: 15px;
    }

    .qa__item-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .qa__item-title {
        font-size: 16px;
    }

    .qa__item-icon {
        width: 28px;
        height: 28px;
        font-size: 22px;
    }
}