/* --- Basic Styles (same as before) --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            font-family: sans-serif;
            direction: rtl;
        }

        .header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .header h1 {
            font-size: 2.2rem;
            font-weight: bold;
            color: #8f4298;
            margin-bottom: 1rem;
        }

        .header p {
            color: #555;
            font-size: 1.1rem;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .category-btn {
            background: #fff;
            padding: 1rem;
            border-radius: 12px;
            border: 2px solid #a855f7;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
            color: #444;
            transition: all 0.3s;
        }

        .category-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
            background: transparent;
            color: #444;
        }

        .category-btn.active {
            background: linear-gradient(135deg, #8f4298, #a855f7);
            border-color: #8f4298;
            box-shadow: 0 8px 25px rgba(143, 66, 152, 0.4);
            transform: scale(1.05);
            color: #fff;
        }

        .category-btn a {
            color: #444;
        }

        .category-btn.active a {
            color: #fff;
        }

        .search-bar {
            margin-bottom: 1.5rem;
        }

        .search-bar input {
            width: 100%;
            padding: 0.9rem 1rem;
            border-radius: 12px;
            border: 1px solid #d8b4fe;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            font-size: 1rem;
        }

        .faq-item {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #eee;
            margin-bottom: 1rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            cursor: pointer;
            align-items: center;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            margin-top: 1rem;
            color: #666;
            line-height: 1.7;
            transition: max-height 0.3s ease;
        }

        .faq-answer.open {
            max-height: 200px;
        }

        .rotate-icon {
            width: 24px;
            height: 24px;
            stroke: #8f4298;
            transition: transform 0.3s ease;
        }

        .rotate-icon.rotated {
            transform: rotate(180deg);
        }

        .btn-load-more {
            display: block;
            margin: 2rem auto;
            padding: 1rem 2rem;
            background: #a855f7;
            color: #fff;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .btn-load-more:hover {
            background: #8f4298;
        }
