.our-core {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            padding-top: 35px;
            padding-bottom: 20px;
        }

        .faq-left {
            padding-right: 20px;
        }

        .faq-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 12px solid #4285f4;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }

        .faq-subtitle {
            color: #4285f4;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq-title {
            font-size: 30px;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 5px;
        }

        .faq-description {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .faq-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .faq-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .question-mark {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #333;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .faq-right {
            padding-left: 20px;
            padding-top: 50px;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        .faq-question {
            padding: 5px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f8fafc;
        }

        .question-content {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .question-number {
            width: 25px;
            height: 25px;
            background: #1a1a1a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
        }

        .faq-item.active .question-number {
            background: #23468f;
        }

        .question-text {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .toggle-icon {
            width: 32px;
            height: 32px;
            border: 2px solid #e5e7eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #666;
            transition: all 0.3s ease;
        }

        .faq-item.active .toggle-icon {
            border-color: #4285f4;
            color: #4285f4;
            transform: rotate(45deg);
        }

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

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

        .answer-content {
            padding: 0 24px 24px 80px;
            color: #666;
            line-height: 1.6;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .our-core {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .faq-left,
            .faq-right {
                padding-left: 5px;
    padding-right: 5px;
            }

            .faq-title {
                font-size: 2rem;
            }

            .faq-question {
                padding: 20px;
            }

            .question-text {
                font-size: 16px;
            }

            .answer-content {
                padding: 0 20px 20px 60px;
            }

            .question-number {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 1.75rem;
            }

            .faq-question {
                padding: 16px;
            }

            .answer-content {
                padding: 0 16px 16px 50px;
            }
        }