

        /* استایل‌های کلی با کلاس‌های کاملاً اختصاصی */
        .medeed-sf-container {
            overflow: hidden;
        }

        .medeed-sf-header {
            padding: 40px 40px 30px;
            text-align: center;
        }

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

        .medeed-sf-subtitle {
            color: #1a3a6e;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .medeed-sf-intro {
            color: #718096;
            line-height: 1.7;
            margin: 0 auto;
        }

        .medeed-sf-form {
            padding: 0 40px 40px;
        }

        .medeed-sf-section {
            margin-bottom: 32px;
            padding: 24px;
            border: 1px solid #e2e8f0;
            background: white;
        }

        .medeed-sf-section-title {
            font-weight: 600;
            color: #1a3a6e;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
        }



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

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

        .medeed-sf-required::after {
            content: " *";
            color: #e53e3e;
        }

        .medeed-sf-checkbox-group {
            margin-bottom: 12px;
        }

        /* استایل چک‌باکس‌های سفارشی */
        .medeed-sf-checkbox-label {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            cursor: pointer;
            color: #4a5568;
            transition: color 0.2s;
            position: relative;
            padding-left: 30px;
        }

            .medeed-sf-checkbox-label input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
            }

        .medeed-sf-checkmark {
            position: absolute;
            left: 0;
            width: 18px;
            height: 18px;
            border: 2px solid #cbd5e0;
            background-color: white;
        }

        .medeed-sf-checkbox-label:hover input ~ .medeed-sf-checkmark {
            border-color: #1a3a6e;
        }

        .medeed-sf-checkbox-label input:checked ~ .medeed-sf-checkmark {
            background-color: #1a3a6e;
            border-color: #1a3a6e;
        }

            .medeed-sf-checkbox-label input:checked ~ .medeed-sf-checkmark::after {
                content: "✓";
                position: absolute;
                color: white;
                font-size: 12px;
                font-weight: bold;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

        /* برای رادیو باتن‌ها */
        .medeed-sf-checkbox-label input[type="radio"] ~ .medeed-sf-checkmark {
            border-radius: 50%;
        }

        .medeed-sf-checkbox-label input[type="radio"]:checked ~ .medeed-sf-checkmark::after {
            content: "";
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .medeed-sf-input,
        .medeed-sf-textarea,
        .medeed-sf-select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #cbd5e0;
            transition: all 0.2s;
            background: white;
        }

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

        .medeed-sf-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .medeed-sf-profession-section {
            display: none;
            margin-top: 20px;
            padding: 20px;
            border: 1px solid #e2e8f0;
            background: #f8fafc;
        }

            .medeed-sf-profession-section.active {
                display: block;
                animation: medeed-sf-fadeIn 0.3s ease;
            }

        @keyframes medeed-sf-fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .medeed-sf-subsection-title {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e2e8f0;
        }

        .medeed-sf-checkbox-columns {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 8px;
        }

        .medeed-sf-submit-btn {
            display: block;
            width: 100%;
            padding: 14px;
            background: #1a3a6e;
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 24px;
        }

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

        .medeed-sf-hinweis {
            margin-top: 20px;
            padding: 16px;
            background: #f0fff4;
            border: 1px solid #9ae6b4;
            font-size: 14px;
            color: #2d3748;
            text-align: center;
        }

        .medeed-sf-optional {
            color: #718096;
            font-style: italic;
            margin-left: 5px;
        }

        /* ریسپانسیو */
        @media (max-width: 768px) {
            .medeed-sf-container {
                margin: 10px;
            }

            .medeed-sf-header {
                padding: 30px 20px 20px;
            }

            .medeed-sf-form {
                padding: 0 20px 30px;
            }

            .medeed-sf-section {
                padding: 20px;
            }

            .medeed-sf-checkbox-columns {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .medeed-sf-header {
                padding: 20px 15px 15px;
            }

            .medeed-sf-form {
                padding: 0 15px 20px;
            }

            .medeed-sf-section {
                padding: 16px;
            }
        }
    