    /* =========================================
       Platform SEO Page - Consistent Blue/White Identity
       ========================================= */

    :root {
        --t3-blue: #73ADDF;
        --t3-blue-light: #eef6fc;
        --t3-blue-hover: #5fa0d6;
        --t3-text-dark: #1e293b;
        --t3-text-gray: #64748b;
        --t3-bg-white: #ffffff;
        --t3-bg-gray: #f8fafc;
        --t3-border-light: #e2e8f0;
        --t3-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    }

    body {
        background-color: var(--t3-bg-gray);
        font-family: 'DIN Next LT Arabic', sans-serif;
        color: var(--t3-text-dark);
        line-height: 1.6;
    }

    .t3-page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        padding-bottom: 80px;
    }

    /* ========================
       HERO SECTION
       ======================== */
    .t3-hero {
        background: #fff;
        padding: 80px 0 60px;
        text-align: center;
        border-bottom: 1px solid var(--t3-border-light);
        margin-bottom: 50px;
    }

    .t3-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--t3-text-dark);
        margin-bottom: 20px;
    }

    .t3-hero h1 span {
        color: var(--t3-blue);
    }

    .t3-hero p {
        font-size: 1.2rem;
        color: var(--t3-text-gray);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }

    .t3-intro-box {
        background: var(--t3-blue-light);
        border: 1px solid rgba(115, 173, 223, 0.3);
        border-radius: 16px;
        padding: 30px;
        max-width: 900px;
        margin: 40px auto 0;
        text-align: center;
    }

    .t3-intro-box p {
        font-size: 1.1rem;
        color: var(--t3-blue);
        font-weight: 600;
        margin: 0;
    }

    /* ========================
       SERVICE SECTIONS
       ======================== */
    .t3-section {
        background: #fff;
        border-radius: 20px;
        border: 1px solid var(--t3-border-light);
        margin-bottom: 40px;
        overflow: hidden;
        box-shadow: var(--t3-shadow);
        transition: transform 0.3s;
    }
    
    .t3-section:hover {
        transform: translateY(-5px);
        border-color: var(--t3-blue);
    }

    .t3-header {
        background: #fff;
        padding: 40px;
        border-bottom: 1px solid var(--t3-border-light);
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .t3-icon {
        width: 60px;
        height: 60px;
        background: var(--t3-blue-light);
        color: var(--t3-blue);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }

    .t3-title h2 {
        font-size: 1.8rem;
        margin: 0 0 10px;
        color: var(--t3-text-dark);
    }

    .t3-title p {
        margin: 0;
        color: var(--t3-text-gray);
    }

    .t3-content {
        padding: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .t3-content-col h3 {
        font-size: 1.2rem;
        color: var(--t3-blue);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .t3-content-col h3::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        background: var(--t3-blue);
        border-radius: 50%;
    }

    .t3-content-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .t3-content-col li {
        margin-bottom: 12px;
        padding-right: 20px;
        position: relative;
        color: var(--t3-text-dark);
        font-size: 1rem;
    }

    .t3-content-col li::before {
        content: "✓";
        color: var(--t3-blue);
        position: absolute;
        right: 0;
        font-weight: bold;
    }

    /* ========================
       WHY SECTION
       ======================== */
    .t3-why-section {
        background: #fff;
        border: 1px solid var(--t3-border-light);
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        margin-bottom: 60px;
        box-shadow: var(--t3-shadow);
    }

    .t3-why-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        color: var(--t3-text-dark);
    }

    .t3-why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .t3-why-card {
        background: var(--t3-bg-gray);
        padding: 30px 20px;
        border-radius: 16px;
        border: 1px solid var(--t3-border-light);
        transition: all 0.3s ease;
    }
    
    .t3-why-card:hover {
        border-color: var(--t3-blue);
        transform: translateY(-5px);
    }
    
    .t3-why-card p {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--t3-text-dark);
    }

    /* ========================
       ACADEMY CTA (Consistent)
       ======================== */
    .t3-cta-academy {
        background: var(--t3-blue);
        color: #fff;
        border-radius: 24px;
        padding: 60px 40px;
        text-align: center;
        margin-top: 60px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(115, 173, 223, 0.3);
    }

    .t3-cta-academy::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }

    .t3-cta-academy h2 {
        color: #fff;
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .t3-cta-academy p {
        color: rgba(255,255,255,0.9);
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto 32px;
    }

    .t3-btn-white {
        background: #fff;
        color: var(--t3-blue);
        padding: 16px 32px;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: transform 0.3s;
    }

    .t3-btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .t3-btn-ghost {
        background: transparent;
        color: var(--t3-blue);
        border: 2px solid rgba(115, 173, 223, 0.3);
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        width: fit-content;
        margin-top: 20px;
        margin-right: auto;
        transition: all 0.3s;
    }

    .t3-btn-ghost:hover {
        border-color: var(--t3-blue);
        background: rgba(115, 173, 223, 0.08);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .t3-hero h1 { font-size: 2.2rem; }
        .t3-header { flex-direction: column; text-align: center; }
        .t3-content { grid-template-columns: 1fr; gap: 30px; }
        .t3-content-col { border-bottom: 1px dashed var(--t3-border-light); padding-bottom: 20px; }
        .t3-content-col:last-child { border-bottom: none; }
    }

/* ===================================
   Tier 3 — H2 Subtitle Paragraph
   Soft rainbow border + floating ring ornaments
   =================================== */
@keyframes t3-rainbowBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes t3-ringFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
    50% { transform: translateY(-5px) scale(1.1); opacity: 0.2; }
}
@keyframes t3-ringFloat2 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.25; }
    50% { transform: translateY(4px) scale(0.9); opacity: 0.15; }
}

.t3-title h2 + p,
.t3-why-section h2 + p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #64748b;
    max-width: 700px;
    margin: 22px auto 30px;
    padding: 28px 34px 28px 28px;
    background: linear-gradient(160deg, #ffffff 0%, #f0f9ff 35%, #faf5ff 65%, #f0fdfa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    position: relative;
    text-align: right;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(92,181,229,0.07);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
    overflow: hidden;
}

.t3-title h2 + p:hover,
.t3-why-section h2 + p:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(92,181,229,0.12);
}

/* Soft animated rainbow gradient border */
.t3-title h2 + p::before,
.t3-why-section h2 + p::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg,
        rgba(92,181,229,0.2),
        rgba(139,92,246,0.15),
        rgba(6,182,212,0.2),
        rgba(236,72,153,0.1),
        rgba(92,181,229,0.2)
    );
    background-size: 300% 300%;
    animation: t3-rainbowBorder 5s ease infinite;
    z-index: -1;
}

/* Floating decorative ring ornaments */
.t3-title h2 + p::after,
.t3-why-section h2 + p::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 30px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid rgba(92,181,229,0.18);
    animation: t3-ringFloat 3.5s ease-in-out infinite;
    pointer-events: none;
    box-shadow:
        60px 8px 0 -1px transparent,
        60px 8px 0 2px rgba(139,92,246,0.12),
        -20px 70px 0 -3px transparent,
        -20px 70px 0 0 rgba(6,182,212,0.1);
}

@media (max-width: 768px) {
    .t3-title h2 + p,
    .t3-why-section h2 + p {
        font-size: 0.98rem;
        padding: 22px 24px;
        margin: 16px auto 22px;
    }
    .t3-title h2 + p::after,
    .t3-why-section h2 + p::after {
        width: 18px; height: 18px; top: -8px; left: 20px;
        box-shadow:
            40px 6px 0 1px rgba(139,92,246,0.1),
            -14px 50px 0 -1px rgba(6,182,212,0.08);
    }
}
