.faq {
            max-width: 1000px;
            margin: 0 auto;
            padding: 12px 24px;
        }

        .faq__title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 48px;
            color: #151515;
        }

        .faq__list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq__item {
            background-color: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
        }

        .faq__question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.125rem;
            font-weight: 500;
            color: #151515;
            transition: background-color 0.2s ease;
        }

        .faq__question:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }

        .faq__question-text {
            flex: 1;
            padding-right: 16px;
        }

        .faq__icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .faq__icon--rotated {
            transform: rotate(45deg);
        }

        .faq__answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq__answer--open {
            padding: 0 24px 24px 24px;
            max-height: 200px;
        }

        .faq__answer-text {
            color: #747474;
            line-height: 1.6;
        }

        .faq__help {
            text-align: center;
            margin-top: 48px;
            color: #747474;
        }

        .faq__help-link {
            color: #151515;
            text-decoration: underline;
        }

        .faq__help-link:hover {
            text-decoration: none;
        }

        /* Plus icon using CSS */
        .faq__plus-icon {
            position: relative;
            width: 24px;
            height: 24px;
        }

        .faq__plus-icon::before,
        .faq__plus-icon::after {
            content: '';
            position: absolute;
            background-color: #151515;
            transition: transform 0.2s ease;
        }

        .faq__plus-icon::before {
            width: 16px;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq__plus-icon::after {
            width: 2px;
            height: 16px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq__plus-icon--rotated::after {
            transform: translate(-50%, -50%) rotate(90deg) scale(0);
        }

        @media (max-width: 768px) {
            .faq {
                padding: 32px 16px;
            }

            .faq__title {
                font-size: 2rem;
                margin-bottom: 32px;
            }

            .faq__question {
                padding: 16px 20px;
                font-size: 1rem;
            }

            .faq__answer--open {
                padding: 0 20px 20px 20px;
            }
        }