:root {
        --sg-gold: #f4a020;
        --sg-gold-dark: #c97b00;
        --sg-purple: #7209b7;
        --sg-purple-light: #9d4edd;
        --sg-teal: #06d6a0;
        --sg-dark: #0f0c1a;
    }

    .sg-hero {
        background: #23119A; /* Exact brand Indigo color */
        min-height: 500px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 5rem 0 4rem;
    }

    .sg-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 60% 50% at 80% 50%, rgba(114, 9, 183, 0.25) 0%, transparent 70%),
            radial-gradient(ellipse 50% 60% at 20% 80%, rgba(244, 160, 32, 0.18) 0%, transparent 70%);
        pointer-events: none;
    }

    .sg-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(244, 160, 32, 0.15);
        border: 1px solid rgba(244, 160, 32, 0.4);
        color: var(--sg-gold);
        border-radius: 50px;
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-bottom: 1.5rem;
    }

    .sg-hero-title {
        font-size: 3.2rem;
        font-weight: 800;
        line-height: 1.15;
        color: white;
        margin-bottom: 1.25rem;
    }

    .sg-hero-title .highlight {
        background: linear-gradient(90deg, var(--sg-gold), #FFFFFF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .sg-hero-subtitle {
        font-size: 1.15rem;
        color: rgba(255,255,255,0.75);
        margin-bottom: 2.5rem;
        max-width: 580px;
        line-height: 1.7;
    }

    .sg-hero-cta {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-sg-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(244,160,32,0.5);
        color: white;
    }

    .btn-sg-outline {
        background: transparent;
        color: white;
        border: 2px solid rgba(255,255,255,0.35);
        padding: 0.875rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s;
        text-decoration: none;
    }

    .btn-sg-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.6);
        color: white;
        transform: translateY(-2px);
    }

    /* Stats bar */
    .sg-stats-bar {
        background: white;
        box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        border-radius: 1rem;
        padding: 1.75rem 2rem;
        margin-top: -3rem;
        position: relative;
        z-index: 10;
    }

    .sg-stat-item {
        text-align: center;
        padding: 0 1.5rem;
        border-right: 1px solid #e9ecef;
    }

    .sg-stat-item:last-child {
        border-right: none;
    }

    .sg-stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--sg-purple), var(--sg-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 0.25rem;
    }

    .sg-stat-label {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 500;
    }

    /* Section styling */
    .sg-section {
        padding: 5rem 0;
    }

    .sg-section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .sg-section-tag {
        display: inline-block;
        background: linear-gradient(135deg, rgba(114,9,183,0.1), rgba(244,160,32,0.1));
        border: 1px solid rgba(114,9,183,0.2);
        color: var(--sg-purple);
        padding: 0.3rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
    }

    .sg-section-title {
        font-size: 2.25rem;
        font-weight: 800;
        color: #0f0c1a;
        margin-bottom: 0.75rem;
    }

    .sg-section-subtitle {
        font-size: 1.05rem;
        color: #6c757d;
        max-width: 560px;
        margin: 0 auto;
    }

    /* Scholarship Cards */
    .scholarship-card {
        background: white;
        border-radius: 1.25rem;
        padding: 1.75rem;
        box-shadow: 0 2px 20px rgba(0,0,0,0.06);
        transition: all 0.3s;
        border: 1px solid #f0f0f0;
        height: 100%;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
    }

    .scholarship-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(114,9,183,0.15);
        border-color: rgba(114,9,183,0.2);
        color: inherit;
    }

    .scholarship-card-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .scholarship-icon {
        width: 52px;
        height: 52px;
        border-radius: 0.75rem;
        background: linear-gradient(135deg, var(--sg-purple), var(--sg-purple-light));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .scholarship-card-name {
        font-size: 1rem;
        font-weight: 700;
        color: #0f0c1a;
        line-height: 1.4;
        margin-bottom: 0.25rem;
    }

    .scholarship-card-provider {
        font-size: 0.8rem;
        color: #6c757d;
    }

    .scholarship-card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .tag {
        padding: 0.25rem 0.65rem;
        border-radius: 50px;
        font-size: 0.72rem;
        font-weight: 600;
    }

    .tag-gold {
        background: rgba(244,160,32,0.12);
        color: var(--sg-gold-dark);
    }

    .tag-purple {
        background: rgba(114,9,183,0.1);
        color: var(--sg-purple);
    }

    .tag-teal {
        background: rgba(6,214,160,0.12);
        color: #06a076;
    }

    .tag-red {
        background: rgba(220,53,69,0.1);
        color: #dc3545;
    }

    .scholarship-card-footer {
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .stipend-display {
        font-weight: 700;
        color: var(--sg-purple);
        font-size: 0.95rem;
    }

    .difficulty-pill {
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
    }

    /* Feature Section */
    .feature-box {
        background: white;
        border-radius: 1rem;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 2px 16px rgba(0,0,0,0.05);
        transition: all 0.3s;
        border: 1px solid #f0f0f0;
    }

    .feature-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(114,9,183,0.12);
    }

    .feature-icon-wrap {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        margin: 0 auto 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
    }

    /* Comparison CTA */
    .comparison-cta-section {
        background: #23119A; /* Exact brand Indigo color */
        border-radius: 1.5rem;
        padding: 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .comparison-cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(244,160,32,0.1) 0%, transparent 60%);
        pointer-events: none;
    }

    /* Comparison cards */
    .comparison-mini-card {
        background: white;
        border-radius: 1rem;
        padding: 1.5rem;
        border: 1px solid #f0f0f0;
        box-shadow: 0 2px 16px rgba(0,0,0,0.05);
        transition: all 0.3s;
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .comparison-mini-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(114,9,183,0.15);
        border-color: rgba(114,9,183,0.2);
        color: inherit;
    }

    .vs-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--sg-purple), var(--sg-gold));
        color: white;
        border-radius: 50%;
        font-weight: 800;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    /* Quick filter links */
    .quick-filter-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.55rem 1.25rem;
        border-radius: 50px;
        background: white;
        border: 1.5px solid #e9ecef;
        color: #495057;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.25s;
        box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    }

    .quick-filter-chip:hover {
        border-color: var(--sg-purple);
        color: var(--sg-purple);
        background: rgba(114,9,183,0.04);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(114,9,183,0.12);
    }

    @media (max-width: 767.98px) {
        .sg-hero-title { font-size: 2.2rem; }
        .sg-stats-bar { margin-top: 1rem; }
        .sg-stat-item { border-right: none; padding: 0.5rem 0; }
        .comparison-cta-section { padding: 2.5rem 1.5rem; }
    }