/* FAQ Section - Mobile */
.faq {
    position: relative;
    width: 100%;
    background: url('../img/general/five-bg.jpg') lightgray 50% / cover no-repeat;
    padding: 3.75rem 1rem 4rem 1rem; /* 60px top, 16px sides, 64px bottom */
    overflow: hidden;
}

/* Blur Background Circle */
.faq__blur {
    position: absolute;
    left: 12.125rem; /* 194px */
    bottom: -20.685rem; /* -330.954px */
    width: 95.75rem; /* 1532px */
    height: 74.75rem; /* 1196px */
    border-radius: 95.75rem; /* 1532px */
    background: #FFF;
    filter: blur(7.813rem); /* 125px */
    z-index: 0;
    pointer-events: none;
}

.faq__container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1;
}

/* Title Section */
.faq__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem; /* 12px */
    margin-bottom: 3.75rem; /* 60px */
}

.faq__icon {
    width: 2rem; /* 32px */
    height: 2rem; /* 32px */
    flex-shrink: 0;
}

.faq__title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem; /* 40px on mobile */
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    color: #1E1E1E;
}

/* FAQ Content Container */
.faq__content {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 1.625rem; /* 26px */
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0.875rem; /* 14px */
    border: 2px solid rgba(217, 217, 217, 0.20);
    background: rgba(126, 126, 126, 0.20);
    box-shadow: 0 1.563rem 3.125rem -0.75rem rgba(0, 0, 0, 0.10); /* 0 25px 50px -12px */
    backdrop-filter: blur(0.5rem);
}

/* FAQ Item */
.faq__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__item:last-child {
    border-bottom: none;
}

/* Question */
.faq__question {
    display: flex;
    padding: 1rem 0; /* 16px */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 0.5rem; /* 8px */
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    transition: opacity 0.3s ease;
}

.faq__question:hover {
    opacity: 0.8;
}

.faq__question-text {
    color: rgb(30, 30, 30);
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem; /* 18px on mobile */
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    flex: 1;
}

.faq__question-icon {
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question-icon {
    transform: rotate(180deg);
}

/* Answer */
.faq__answer {
    display: none;
    min-height: 1.625rem; /* 26px */
    padding-left: 1.125rem; /* 18px */
    padding-bottom: 1rem; /* 16px */
    padding-top: 0.5rem; /* 8px for better centering */
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-left: 2px solid rgba(255, 255, 255, 0.40);
    margin-left: 0.5rem;
}

.faq__item.active .faq__answer {
    display: flex;
}

.faq__answer-text {
    color: rgb(117, 117, 117);
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* 16px */
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
