/* ==========================================================================
   OHS PRACTITIONER CERTIFICATION WIDGETS STYLESHEET
   Matching Reference Design & Conformity Globe Branding
   ========================================================================== */

/* --- SECTION 1: OHS HERO WIDGET --- */
.cg-ohs-hero-section {
    position: relative;
    background: linear-gradient(135deg, #07162C 0%, #0D264A 60%, #153B6E 100%);
    padding: 100px 20px 140px 20px;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cg-ohs-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.cg-ohs-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.cg-ohs-hero-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.25);
    border: 1px solid rgba(0, 102, 255, 0.5);
    color: #4D9CFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.cg-ohs-hero-title {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.cg-ohs-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #A0C4FF;
    margin-bottom: 24px;
}
.cg-ohs-hero-desc {
    max-width: 840px;
    margin: 0 auto 36px auto;
    font-size: 16px;
    line-height: 1.7;
    color: #D1E2FF;
}
.cg-ohs-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0066FF;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.35);
}
.cg-ohs-hero-cta:hover {
    background: #0052CC;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 102, 255, 0.5);
    color: #ffffff;
}

/* Floating Navigation Bar (Reference Image Style) */
.cg-ohs-floating-nav-wrap {
    max-width: 1100px;
    margin: -60px auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}
.cg-ohs-floating-nav {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 12px;
    gap: 10px;
    overflow-x: auto;
}
.cg-ohs-nav-item {
    flex: 1;
    min-width: 170px;
    padding: 16px 14px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    color: #4A5568;
    transition: all 0.3s ease;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}
.cg-ohs-nav-item.active,
.cg-ohs-nav-item:hover {
    background: #0066FF;
    color: #ffffff;
    border-color: #0066FF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.25);
}
.cg-ohs-nav-icon {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}
.cg-ohs-nav-title {
    font-weight: 700;
    font-size: 14px;
    display: block;
}

/* --- SECTION 2: OHS WHY CHOOSE US WIDGET --- */
.cg-ohs-why-section {
    padding: 80px 20px;
    background: #F8FAFC;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cg-ohs-why-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}
.cg-ohs-section-tag {
    color: #0066FF;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}
.cg-ohs-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    margin-bottom: 16px;
}
.cg-ohs-section-subtitle {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

.cg-ohs-why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.cg-ohs-why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cg-ohs-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: #0066FF;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cg-ohs-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
}
.cg-ohs-why-card:hover::before {
    opacity: 1;
}
.cg-ohs-why-icon {
    width: 56px;
    height: 56px;
    background: #EFF6FF;
    border-radius: 12px;
    color: #0066FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.cg-ohs-why-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}
.cg-ohs-why-card-text {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

.cg-ohs-dm-callout {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    background: linear-gradient(90deg, #0066FF 0%, #0044B3 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}
.cg-ohs-dm-callout-icon {
    font-size: 32px;
    color: #FFD166;
    flex-shrink: 0;
}
.cg-ohs-dm-callout-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

/* --- SECTION 3: OHS ELIGIBILITY WIDGET --- */
.cg-ohs-eligibility-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cg-ohs-pathway-grid {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}
.cg-ohs-pathway-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cg-ohs-pathway-card:hover {
    background: #ffffff;
    border-color: #0066FF;
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.12);
    transform: translateY(-4px);
}
.cg-ohs-pathway-badge {
    align-self: flex-start;
    background: #0066FF;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.cg-ohs-pathway-title {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.4;
}
.cg-ohs-pathway-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.cg-ohs-pathway-exp {
    background: #EFF6FF;
    color: #0066FF;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cg-ohs-qual-box {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background: #F1F5F9;
    border-radius: 16px;
    padding: 28px;
    border-left: 5px solid #0066FF;
}
.cg-ohs-qual-title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}
.cg-ohs-qual-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.cg-ohs-qual-tag {
    background: #ffffff;
    border: 1px solid #CBD5E1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.cg-ohs-check-cta {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cg-ohs-check-cta-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}
.cg-ohs-check-cta-content p {
    color: #94A3B8;
    margin: 0;
    font-size: 15px;
}
.cg-ohs-check-btn {
    background: #0066FF;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cg-ohs-check-btn:hover {
    background: #0052CC;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
}

/* --- SECTION 4: OHS ASSESSMENT WIDGET (NAVY BLUE DARK SECTION) --- */
.cg-ohs-assessment-section {
    padding: 90px 20px;
    background: #061224;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cg-ohs-assessment-grid-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}
@media (max-width: 991px) {
    .cg-ohs-assessment-grid-wrap {
        grid-template-columns: 1fr;
    }
}
.cg-ohs-assessment-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}
.cg-ohs-assessment-left p {
    color: #94A3B8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Outlined Box Cards Matching Reference Image Section 4 */
.cg-ohs-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 600px) {
    .cg-ohs-areas-grid {
        grid-template-columns: 1fr;
    }
}
.cg-ohs-area-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
}
.cg-ohs-area-card:hover {
    border-color: #0066FF;
    background: rgba(0, 102, 255, 0.08);
    transform: translateY(-3px);
}
.cg-ohs-area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.cg-ohs-area-icon {
    font-size: 26px;
    color: #38BDF8;
}
.cg-ohs-area-weight {
    background: rgba(56, 189, 248, 0.15);
    color: #38BDF8;
    font-weight: 800;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
}
.cg-ohs-area-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.cg-ohs-area-desc {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.5;
}

.cg-ohs-score-threshold-box {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(13, 38, 74, 0.8) 100%);
    border: 1px solid #0066FF;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.cg-ohs-score-num {
    font-size: 42px;
    font-weight: 900;
    color: #38BDF8;
    line-height: 1;
}
.cg-ohs-score-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.cg-ohs-score-info p {
    font-size: 13px;
    color: #CBD5E1;
    margin: 0;
}

/* --- SECTION 5: OHS JOURNEY WIDGET --- */
.cg-ohs-journey-section {
    padding: 90px 20px;
    background: #F8FAFC;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cg-ohs-steps-grid {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
}
.cg-ohs-step-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 18px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
}
.cg-ohs-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
    border-color: #0066FF;
}
.cg-ohs-step-num {
    font-size: 26px;
    font-weight: 900;
    color: #0066FF;
    opacity: 0.8;
    margin-bottom: 8px;
}
.cg-ohs-step-title {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}
.cg-ohs-step-desc {
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
}

.cg-ohs-recert-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #CBD5E1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.cg-ohs-recert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.cg-ohs-recert-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
}
.cg-ohs-recert-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}
.cg-ohs-recert-list li {
    background: #F1F5F9;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cg-ohs-recert-list li::before {
    content: '✓';
    color: #0066FF;
    font-weight: 900;
}

/* --- DUBAI MUNICIPALITY OHS HEADER WIDGET (LEFT LOGO, RIGHT TEXT) --- */
.cg-dm-ohs-header-section {
    padding: 60px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cg-dm-ohs-header-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 45px;
    background-color: #F8FAFC;
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: 24px;
    padding: 45px 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cg-dm-ohs-header-container:hover {
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.25);
}

/* Dedicated Background Image Layer (Low Opacity) */
.cg-dm-ohs-bg-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.cg-dm-ohs-logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 24px 30px;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
    opacity: 1 !important;
}
.cg-dm-ohs-logo-wrap img {
    max-width: 240px;
    height: auto;
    display: block;
}
.cg-dm-ohs-content-wrap {
    flex-grow: 1;
    text-align: left;
    position: relative;
    z-index: 2;
    opacity: 1 !important;
}
.cg-dm-ohs-tagline {
    display: inline-block;
    color: #0066FF;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.cg-dm-ohs-title {
    font-size: 30px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.35;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}
.cg-dm-ohs-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

@media (max-width: 991px) {
    .cg-dm-ohs-header-container {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }
    .cg-dm-ohs-content-wrap {
        text-align: center;
    }
}

/* --- DM PATHWAYS WIDGET --- */
.cg-dm-pathways-section {
    padding: 90px 20px;
    background: #F8FAFC;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cg-dm-pathways-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}
.cg-dm-pathway-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.cg-dm-pathway-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.cg-dm-pathway-card.practitioner-card {
    border-top: 5px solid #0066FF;
}
.cg-dm-pathway-card.pic-card {
    border-top: 5px solid #059669;
}
.cg-dm-pathway-badge-tag {
    align-self: flex-start;
    background: #EFF6FF;
    color: #0066FF;
    border: 1px solid #BFDBFE;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.cg-dm-pathway-badge-tag.green {
    background: #ECFDF5;
    color: #059669;
    border-color: #A7F3D0;
}
.cg-dm-pathway-icon {
    width: 60px;
    height: 60px;
    background: #EFF6FF;
    border-radius: 14px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.cg-dm-pathway-icon.green-icon {
    background: #D1FAE5;
}
.cg-dm-pathway-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.3;
}
.cg-dm-pathway-desc {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.cg-dm-pathway-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cg-dm-pathway-highlights li {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cg-dm-pathway-highlights li::before {
    content: '✓';
    color: #0066FF;
    font-weight: 900;
}
.cg-dm-pathway-highlights.green-list li::before {
    color: #059669;
}
.cg-dm-pathway-footer {
    margin-top: auto;
}
.cg-dm-pathway-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.cg-dm-pathway-btn.btn-blue {
    background: #0066FF;
    color: #ffffff;
}
.cg-dm-pathway-btn.btn-blue:hover {
    background: #0052CC;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}
.cg-dm-pathway-btn.btn-green {
    background: #059669;
    color: #ffffff;
}
.cg-dm-pathway-btn.btn-green:hover {
    background: #047857;
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
}

/* --- DM TRUST BANNER WIDGET (NAVY BLUE DARK SECTION) --- */
.cg-dm-trust-section {
    padding: 90px 20px;
    background: #061224;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cg-dm-trust-container {
    max-width: 1140px;
    margin: 0 auto;
}
.cg-dm-trust-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}
.cg-dm-trust-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 14px;
}
.cg-dm-trust-header p {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}
.cg-dm-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.cg-dm-pillar-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
}
.cg-dm-pillar-card:hover {
    border-color: #38BDF8;
    background: rgba(56, 189, 248, 0.08);
    transform: translateY(-4px);
}
.cg-dm-pillar-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.cg-dm-pillar-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.cg-dm-pillar-desc {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}



