

        /* استایل‌های اختصاصی برای صفحه FAQ */
        .medeed-faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .medeed-faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .medeed-faq-title {
            color: #1a3a6e;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .medeed-faq-subtitle {
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .medeed-faq-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 10px;
        }

        .medeed-faq-tab {
            padding: 12px 30px;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            color: #718096;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            margin: 0 10px;
        }

            .medeed-faq-tab.active {
                color: #1a3a6e;
                border-bottom: 3px solid #1a3a6e;
            }

            .medeed-faq-tab:hover {
                color: #1a3a6e;
            }

        .medeed-faq-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

            .medeed-faq-content.active {
                display: block;
            }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .medeed-faq-item {
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            border-radius: 3px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

            .medeed-faq-item:hover {
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }

        .medeed-faq-question {
            padding: 20px 25px;
            background: #f7fafc;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2d3748;
            transition: background 0.3s ease;
        }

            .medeed-faq-question:hover {
                background: #edf2f7;
            }

        .medeed-faq-icon {
            font-size: 1.2rem;
            color: #1a3a6e;
            transition: transform 0.3s ease;
        }

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

        .medeed-faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
            line-height: 1.6;
            color: #4a5568;
        }

        .medeed-faq-item.active .medeed-faq-answer {
            padding: 25px 25px;
        }

        .medeed-faq-answer p {
            margin-bottom: 15px;
        }

        .medeed-faq-answer ul,
        .medeed-faq-answer ol {
            margin: 15px 0;
            padding-left: 20px;
        }

        .medeed-faq-source-intro {
            margin-bottom: 25px;
            padding: 20px 25px;
            background: #f7fafc;
            text-align: justify;
            color: #4a5568;
        }

        .medeed-faq-source-intro p:last-child {
            margin-bottom: 0;
        }

        .medeed-faq-group {
            margin-top: 38px;
        }

        .medeed-faq-group-title {
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e2e8f0;
            color: #1a3a6e;
            font-size: 1.35rem;
            line-height: 1.4;
        }

        .medeed-roadmap {
            position: relative;
            margin: 28px 0 12px;
        }

        .medeed-roadmap::before {
            content: "";
            position: absolute;
            top: 21px;
            bottom: 21px;
            left: 20px;
            width: 2px;
            background: linear-gradient(180deg, #3e66f3 0%, #1a3a6e 100%);
        }

        .medeed-roadmap-step {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 42px minmax(0, 1fr);
            gap: 14px;
            align-items: center;
            margin-bottom: 14px;
        }

        .medeed-roadmap-step:last-child {
            margin-bottom: 0;
        }

        .medeed-roadmap-marker {
            display: inline-flex;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            border: 3px solid #dce5ff;
            border-radius: 50%;
            background: #1a3a6e;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 0 0 4px #fff;
        }

        .medeed-roadmap-card {
            min-height: 42px;
            padding: 12px 16px;
            border: 1px solid #dfe6f2;
            border-radius: 0;
            background: #fff;
            box-shadow: 0 3px 12px rgba(26, 58, 110, 0.07);
        }

        .medeed-roadmap-card p {
            margin: 0;
            color: #2d3748;
            font-weight: 600;
        }

        .medeed-roadmap-phase {
            display: inline-block;
            margin-bottom: 5px;
            color: #3e66f3;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .medeed-roadmap--compact {
            margin-top: 20px;
        }

        .medeed-roadmap--compact::before {
            top: 17px;
            bottom: 17px;
            left: 16px;
        }

        .medeed-roadmap--compact .medeed-roadmap-step {
            grid-template-columns: 34px minmax(0, 1fr);
            gap: 12px;
            margin-bottom: 9px;
        }

        .medeed-roadmap--compact .medeed-roadmap-marker {
            width: 34px;
            height: 34px;
            border-width: 2px;
            font-size: 0.76rem;
        }

        .medeed-roadmap--compact .medeed-roadmap-card {
            min-height: 34px;
            padding: 8px 13px;
        }

        .medeed-roadmap-note {
            margin-top: 22px !important;
            padding: 16px 18px;
            border: 1px solid #dfe6f2;
            border-radius: 0;
            background: #f4f7ff;
            color: #1a3a6e;
            font-weight: 600;
        }

        .medeed-roadmap-contrast {
            margin-bottom: 22px;
            padding: 16px 18px;
            border: 1px solid #f0d7d7;
            border-radius: 0;
            background: #fff7f7;
        }

        .medeed-roadmap-contrast span {
            display: block;
            margin-bottom: 5px;
            color: #a33a3a;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .medeed-roadmap-contrast p {
            margin: 0;
            color: #6f3131;
            font-weight: 600;
        }

        .medeed-faq-subquestion {
            margin: 22px 0 10px;
            color: #1a3a6e;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .medeed-faq-subquestion:first-child {
            margin-top: 0;
        }

        .medeed-faq-answer li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 3px;
        }

            .medeed-faq-answer li:before {
                color: #1a3a6e;
                position: absolute;
                left: 0;
            }

        /* فرم پرسش سوال جدید */
        .medeed-new-question {
            background: #f7fafc;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid #e2e8f0;
        }

        .medeed-new-question-title {
            color: #1a3a6e;
            margin-bottom: 20px;
            text-align: center;
        }

        .medeed-form-group {
            margin-bottom: 20px;
        }

        .medeed-form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2d3748;
        }

        .medeed-form-input,
        .medeed-form-textarea,
        .medeed-form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 0px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

            .medeed-form-input:focus,
            .medeed-form-textarea:focus,
            .medeed-form-select:focus {
                outline: none;
                border-color: #1a3a6e;
                box-shadow: 0 0 0 3px rgba(26, 58, 110, 0.1);
            }

        .medeed-form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .medeed-form-submit {
            background: #1a3a6e;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 2px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            display: block;
            margin: 30px auto 0;
        }

            .medeed-form-submit:hover {
                background: #2c5282;
            }

        /* ریسپانسیو */
        @media (max-width: 768px) {
            .medeed-faq-tabs {
                flex-direction: column;
                align-items: center;
            }

            .medeed-faq-tab {
                width: 100%;
                max-width: 300px;
                margin-bottom: 10px;
                text-align: center;
            }

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

            .medeed-roadmap::before {
                left: 17px;
            }

            .medeed-roadmap-step {
                grid-template-columns: 36px minmax(0, 1fr);
                gap: 10px;
            }

            .medeed-roadmap-marker {
                width: 36px;
                height: 36px;
                border-width: 2px;
            }

            .medeed-roadmap-card {
                min-height: 36px;
                padding: 10px 12px;
            }

            .medeed-roadmap--compact::before {
                left: 14px;
            }

            .medeed-roadmap--compact .medeed-roadmap-step {
                grid-template-columns: 30px minmax(0, 1fr);
                gap: 9px;
            }

            .medeed-roadmap--compact .medeed-roadmap-marker {
                width: 30px;
                height: 30px;
            }

            .medeed-new-question {
                padding: 25px;
            }
        }
    