.faq {
            max-width: 100%;
            padding: 30px 0px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .faq-item {
            padding: 30px;
            background: rgba(246, 246, 246, 1);
        }
        
        .faq-question {
            cursor: pointer;
            font-weight: bold;
            color: #333;
            position: relative;
            color: rgba(34, 34, 34, 1);
            font-size: 24px;
            font-weight: 400;
            line-height: 27px;
            display: flex;
            justify-content: space-between;
            gap: 15px;
        }
        
        .faq-question span {
            color: #C6A521;
            font-size: 24px;
            font-weight: 700;
        }
        
        .faq-question .circle {
            width: 34px;
            min-width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(234, 136, 20, 1);
            position: relative;
        }
        
        .faq-answer {
            display: none;
            padding-top: 15px;
            color: rgba(129, 129, 129, 1);
            font-size: 16px;
        }
        
        .faq-answer p {
            margin: 0px;
        }
        
        .faq-question .circle::before,
        .faq-question .circle::after {
            content: '';
            position: absolute;
            background-color: white;
            transition: transform 0.3s;
        }
        
        .faq-question .circle::before {
            width: 17px;
            height: 2px;
            top: calc(50% - 1px);
            left: calc(50% - 8.5px);
        }
        
        .faq-question .circle::after {
            width: 2px;
            height: 17px;
            top: calc(50% - 8.5px);
            left: calc(50% - 1px);
            
        }
        
        .faq-question.active .circle::after {
            transform: scaleY(0);
        }
        
        @media(max-width: 768px) {
            .faq-question {
                align-items: center;
            }
        }