        :root {
            --primary-gradient: linear-gradient(135deg, #008080 0%, #00a091 100%);
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.3);
            --text-main: #1a202c;
            --text-muted: #4a5568;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background: #f7fafc;
            color: var(--text-main);
            margin: 0;
            line-height: 1.6;
        }

        .faq-header {
            background: var(--primary-gradient);
            padding: 80px 20px;
            text-align: center;
            color: white;
            clip-path: ellipse(150% 100% at 50% 0%);
        }

        .faq-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .faq-container {
            max-width: 900px;
            margin: -50px auto 100px;
            padding: 0 20px;
        }

        .faq-item {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            margin-bottom: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: #2d3748;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: #008080;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--text-muted);
            font-size: 1rem;
            border-top: 1px solid transparent;
        }

        .faq-item.active .faq-answer {
            padding: 20px 25px;
            max-height: 300px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .search-box {
            max-width: 600px;
            margin: 0 auto 40px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 15px 25px;
            border-radius: 50px;
            border: 2px solid transparent;
            background: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            border-color: #008080;
            box-shadow: 0 10px 30px rgba(0,128,128,0.1);
        }

        @media (max-width: 768px) {
            .faq-header h1 { font-size: 2rem; }
            .faq-question { font-size: 1rem; }
        }
