.dga-embed {
    --neutral-50: #f9fafb;
    --neutral-100: #f3f4f6;
    --neutral-700: #384250;
    --neutral-800: #1f2a37;
    --primary-600: #1b8354;
    --primary-700: #166a45;
    --primary-800: #14573a;
    --surface-white: #ffffff;
    --dga-font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
    --dga-color-bg: var(--neutral-50);
    --dga-color-surface: var(--surface-white);
    --dga-color-surface-hover: var(--neutral-50);
    --dga-color-primary: var(--primary-600);
    --dga-color-primary-hover: var(--primary-700);
    --dga-color-primary-active: var(--primary-800);
    --dga-color-primary-soft: #f0fdf4;
    --dga-color-focus: #84e1bc;
    --dga-color-title: #0d121c;
    --dga-color-text: var(--neutral-700);
    --dga-color-muted: #6b7280;
    --dga-color-strong: var(--neutral-800);
    --dga-color-border: var(--neutral-100);
    --dga-color-divider: var(--primary-600);
    --dga-shadow-card: 0 4px 8px -2px rgba(16, 24, 40, 0.1),
        0 2px 4px -2px rgba(16, 24, 40, 0.06);

    color: var(--neutral-800);
    font-family: var(--dga-font-family);
}

.dga-embed,
.dga-embed *,
.dga-embed *::before,
.dga-embed *::after {
    box-sizing: border-box;
}



.dga-embed .dga-section-title {
    margin: 0;
    color: var(--dga-color-title);
    font: 700 30px / 38px var(--dga-font-family);
}

.dga-embed .dga-divider {
    height: 1px;
    width: 50%;
    max-width: 100%;
    margin-inline: auto;
    border: 0;
    background-color: var(--dga-color-divider);
    opacity: 1;
}

.dga-embed .dga-section-card {
    overflow: hidden;
    border: 1px solid var(--dga-color-border);
    border-radius: 16px;
    background-color: var(--dga-color-surface);
    box-shadow: var(--dga-shadow-card);
    text-align: start;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dga-embed .dga-section-card:hover {
    border-color: var(--dga-color-surface);
    background-color: var(--dga-color-surface-hover);
}

.dga-embed .dga-section-card .card-body {
    min-height: 260px;
}

.dga-embed .dga-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background-color: var(--dga-color-primary-soft);
    color: var(--dga-color-primary);
    font-size: 24px;
    line-height: 1;
}

.dga-embed .dga-card-title {
    color: var(--dga-color-title);
    font: 700 18px / 28px var(--dga-font-family);
}

.dga-embed .dga-card-text {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--dga-color-muted);
    font: 400 16px / 24px var(--dga-font-family);
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dga-embed .dga-contact-list {
    padding-top: 0.25rem;
    color: var(--dga-color-text);
    font: 400 14px / 20px var(--dga-font-family);
}

.dga-embed .dga-contact-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--dga-color-primary);
    font-size: 20px;
    line-height: 20px;
    text-align: center;
}

.dga-embed .dga-contact-text {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 4px;
}

.dga-embed .dga-contact-value,
.dga-embed .dga-contact-link {
    direction: ltr;
    unicode-bidi: embed;
}

.dga-embed .dga-contact-value {
    color: var(--dga-color-strong);
    font-weight: 500;
}

.dga-embed .dga-contact-link,
.dga-embed .dga-link {
    color: var(--dga-color-primary);
    text-decoration: none;
    text-underline-offset: 3px;
}

.dga-embed .dga-contact-link:visited,
.dga-embed .dga-link:visited {
    color: var(--dga-color-primary);
}

.dga-embed .dga-contact-link:hover,
.dga-embed .dga-contact-link:focus-visible {
    color: var(--dga-color-primary-hover);
    text-decoration: underline;
}

.dga-embed .dga-link:hover,
.dga-embed .dga-link:focus-visible {
    border-bottom-color: currentColor;
    color: var(--dga-color-primary-hover);
}

.dga-embed .dga-contact-link:active,
.dga-embed .dga-link:active {
    color: var(--dga-color-primary-active);
}

.dga-embed .dga-card-action {
    display: inline-flex;
    min-width: 72px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 8px 16px;
    border: 0;
    border-radius: 4px;
    background-color: var(--dga-color-primary);
    color: #ffffff;
    font: 600 14px / 20px var(--dga-font-family);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.dga-embed .dga-card-action:hover,
.dga-embed .dga-card-action:focus-visible {
    background-color: var(--dga-color-primary-hover);
    color: #ffffff;
}

.dga-embed .dga-card-action:active {
    background-color: var(--dga-color-primary-active) !important;
    color: #ffffff !important;
}

.dga-embed .dga-card-action:focus-visible,
.dga-embed .dga-link:focus-visible,
.dga-embed .dga-contact-link:focus-visible {
    outline: 2px solid var(--dga-color-focus);
    outline-offset: 2px;
}

.dga-embed .dga-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
    font: 400 16px / 24px var(--dga-font-family);
    transition: border-color 0.2s ease, color 0.2s ease;
}

html[dir="rtl"] .dga-embed .dga-link {
    flex-direction: row;
    text-align: right;
}

html[dir="ltr"] .dga-embed .dga-link {
    flex-direction: row-reverse;
    text-align: left;
}

.dga-embed .dga-link-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    color: currentColor;
    font-size: 20px !important;
    line-height: 20px;
}


.row:has(> .col-md-4 > #list-tab) .tab-content :where(ul, ol):not(.accordion *):not(table *)>li {
    display: flex !important;
}

.row:has(> .col-md-4 > #list-tab) .tab-content :where(h1, h2, h3, h4, h5, h6):not(.accordion *):not(table *) {
    margin-bottom: 0 !important;
}

.d-list-item {
    display: list-item !important;
}




.fa-square-1,
.fa-square-2,
.fa-square-3,
.fa-square-4,
.fa-square-5,
.fa-square-6,
.fa-square-7,
.fa-square-8,
.fa-square-9 {

    display: none !important;
}