        /* Reset styles to avoid conflicts */
        .faq-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .faq-section {
            width: 100%;
            max-width: 100vw;
            margin: 0 auto;
            padding: 40px 0px;
            font-family: 'Futura PT', sans-serif;
            background-color: white;
            color: black;
        }

        .faq-container {
            display: flex;
            gap: 40px;
            align-items: stretch;
            min-height: 500px;
        }

        /* Image Section */
        .faq-image-section {
            flex: 1;
            position: relative;
            background-color: #f8f8f8;
            /* border: 2px solid black; */
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .faq-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
        }

        .faq-center-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: black;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
        }

        .faq-center-button:hover {
            background-color: white;
            color: black;
            border: 2px solid black;
        }

        /* FAQ Content Section */
        .faq-content-section {
            flex: 1;
            padding: 20px 0;
        }

        .faq-title {
            font-size: 48px;
            font-weight: bold;
            color: black;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }

        .faq-item {
            border-bottom: 1px solid black;
            margin-bottom: 20px;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 16px;
            color: black;
        }

        .faq-question:hover {
            background-color: #f5f5f5;
            padding-left: 10px;
        }

        .faq-question-text {
            flex: 1;
            font-weight: 500;
            line-height: 1.4;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .faq-arrow {
            width: 20px;
            height: 20px;
            border-right: 2px solid black;
            border-bottom: 2px solid black;
            transform: rotate(-45deg);
            transition: transform 0.3s ease;
            margin-left: 20px;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
        }

        .faq-answer-text {
            color: #333;
            line-height: 1.6;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-container {
                flex-direction: column;
                gap: 30px;
            }

            .faq-image-section {
                min-height: 300px;
            }

            .faq-title {
                font-size: 36px;
                margin-bottom: 30px;
            }

            .faq-question-text {
                font-size: 14px;
            }

            .faq-center-button {
                padding: 12px 24px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .faq-section {
                padding: 20px 5px;
            }

            .faq-title {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .faq-question {
                padding: 15px 0;
            }

            .faq-question-text {
                font-size: 13px;
                line-height: 1.3;
            }

            .faq-center-button {
                padding: 10px 20px;
                font-size: 12px;
            }
        }