@media (min-width: 768px) {
    .faq-section {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        flex-direction: column;
        width: 100%;
    }
}

@media (min-width: 1280px) {
    .faq-section {
        position: relative;
    background-image: url('../../../../assets/img/product/footer/ellipse-325.svg');
    background-repeat: no-repeat;
    background-position: center bottom -750px;
    background-size: 2377px 1628px;
    }

    .faq-inner-container {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
        align-items: center;
        gap: 32px;
        width: 100%;
        max-width: 812px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .faq-title {
        color: var(--10, #FFF);
        text-align: center;
        font-family: "FRIZON", 'Noto Sans JP', sans-serif;
        font-size: 54px;
        font-style: normal;
        font-weight: 400;
        line-height: 54px;
        width: 1280px;

    }

    .faq-container {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .faq-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        width: 100%;
        position: relative;
    }

    .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq-header {
        display: flex;
        align-items: center;
        padding-left: 40px;
        width: 100%;
            gap:40px;

    }

    .faq-number {
        color: var(--white, #FFF);
        font-family: Barlow;
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        min-width: 50px;
    }

    .faq-question {
        color: var(--white, #FFF);
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        flex: 1;
        text-align: left;
        max-width: 575px;
        min-width: 575px;
    }

    .faq-arrow-container {
        display: flex;
        width: 86px;
        height: 80px;
        padding: 29px 32px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 0 8px 8px 0;
        background: var(--SyFu-Dark, #0D1B2B);
        backdrop-filter: blur(7.5px);
        transition: border-radius 0.3s ease;
    }

    /* FAQ Answer Styles - Desktop */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0 40px;
        margin-left: 90px; /* 40px padding + 50px number width */
    }

    .faq-answer p {
        color: var(--white, #FFF);
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; /* 28px */
        letter-spacing: -0.5px;
        padding: 20px 0;
    }

    /* Active State - Desktop */
    .faq-item.active .faq-answer {
        max-height: 500px; /* Adjust as needed */
        opacity: 1;
        padding-bottom: 32px;
    }

    .faq-item.active .faq-arrow-container {
        border-radius: 0 8px 8px 0;
        margin-right: -50px; /* Extend 50px to the right on desktop */
    }

    .faq-arrow-desktop {
        width: 17px;
        height: 10.512px;
        flex-shrink: 0;
        fill: var(--SyFu-Mint, #3EE8B5);
        transition: transform 0.3s ease;
        display: block;
    }
    
    .faq-arrow-mobile {
        display: none;
    }

    .faq-item.active .faq-arrow-desktop {
        transform: rotate(180deg);
    }

    .faq-docs-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 64px;
        gap: 24px;
    }

    .faq-docs-text {
        color: var(--10, #FFF);
        text-align: center;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.5px;
    }

    .faq-learn-more-button {
        display: flex;
        padding: 0.438rem 1.25rem; /* 7px 20px */
        justify-content: center;
        align-items: center;
        gap: 0.5rem; /* 8px */
        background: transparent;
        border: 1px solid #FFF;
        border-radius: 1.875rem; /* 30px */
        color: var(--white, #FFF);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .faq-learn-more-button:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .faq-learn-more-icon {
        width: 16px;
        height: 16px;
        fill: var(--white, #FFF);
    }
}