    :root {
        --bg-light: #FAFBFF;
        --accent: #978EF9;
        --primary: #1036B1;
    }

    body {
        background-color: var(--bg-light);
    }

    /* =========================
       HEADER SECTION
    ========================== */
    .section-badge {
        display: inline-block;
        padding: 8px 20px;
        background-color: rgba(151, 142, 249, 0.1);
        color: var(--accent);
        font-weight: 500;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        border-radius: 6px;
        margin-bottom: 1rem;
    }

    .page-title {
        color: var(--primary);
        font-weight: 700;
        font-size: 2rem;
        letter-spacing: -0.5px;
        margin-bottom: 0.5rem;
    }

    .page-subtitle {
        color: var(--primary);
        opacity: 0.65;
        font-weight: 400;
        font-size: 1.05rem;
    }

    /* =========================
       CARD STYLES - MINIMALIST
    ========================== */
    .profile-card,
    .content-card {
        background-color: #fff;
        border: none;
        box-shadow: 0 2px 12px rgba(16, 54, 177, 0.04);
        transition: all 0.3s ease;
    }

    .profile-card {
        padding: 2rem;
        border-radius: 0;
    }

    .content-card {
        padding: 2rem;
        border-radius: 0;
        margin-bottom: 1.5rem;
    }

    .profile-card:hover,
    .content-card:hover {
        box-shadow: 0 8px 24px rgba(16, 54, 177, 0.08);
    }

    /* =========================
       PROFILE IMAGE
    ========================== */
    .profile-image-wrapper {
        position: relative;
        margin-bottom: 2rem;
    }

    .profile-image {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 0;
    }

    .candidate-number-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background-color: rgba(255, 255, 255, 0.95);
        color: var(--accent);
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        padding: 8px 16px;
        border-radius: 4px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    /* =========================
       PROFILE INFO
    ========================== */
    .profile-name {
        color: var(--primary);
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        letter-spacing: -0.3px;
    }

    .profile-class {
        color: var(--primary);
        opacity: 0.5;
        font-weight: 400;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(16, 54, 177, 0.06);
    }

    /* =========================
       CONTENT SECTIONS
    ========================== */
    .section-title {
        color: var(--primary);
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        letter-spacing: -0.3px;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid rgba(151, 142, 249, 0.2);
    }

    /* =========================
       RICH TEXT CONTENT
    ========================== */
    .richtext-content {
        line-height: 1.8;
        font-size: 0.95rem;
        color: var(--primary);
        opacity: 0.75;
        word-wrap: break-word;
    }

    .richtext-content h1,
    .richtext-content h2,
    .richtext-content h3 {
        color: var(--primary);
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: -0.3px;
    }

    .richtext-content h1 {
        font-size: 1.75rem;
    }

    .richtext-content h2 {
        font-size: 1.5rem;
    }

    .richtext-content h3 {
        font-size: 1.25rem;
    }

    .richtext-content p {
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    .richtext-content strong,
    .richtext-content b {
        color: var(--primary);
        font-weight: 700;
        opacity: 1;
    }

    .richtext-content a {
        color: var(--accent);
        text-decoration: underline;
        transition: opacity 0.2s;
    }

    .richtext-content a:hover {
        opacity: 0.8;
    }

    .richtext-content ul,
    .richtext-content ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .richtext-content li {
        margin-bottom: 0.5rem;
        line-height: 1.7;
    }

    .richtext-content blockquote {
        border-left: 3px solid var(--accent);
        padding-left: 1rem;
        margin: 1.5rem 0;
        font-style: italic;
        opacity: 0.85;
    }

    /* =========================
       SOCIAL ICONS
    ========================== */
    .social-links {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(16, 54, 177, 0.06);
    }

    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        background-color: rgba(151, 142, 249, 0.08);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        transform: translateY(-2px);
        background-color: rgba(151, 142, 249, 0.15);
    }

    .social-icon i {
        font-size: 16px;
    }
    
    .btn-outline-custom {
        border: 2px solid var(--primary);
        color: var(--primary);
        background-color: transparent;
        border-radius: 0;
        padding: 0.75rem 2rem;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .btn-outline-custom:hover {
        background-color: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    /* =========================
       MODAL STYLING
    ========================== */
    .modal-content {
        border: none;
        border-radius: 0;
        box-shadow: 0 10px 40px rgba(16, 54, 177, 0.15);
    }

    .modal-title-custom {
        color: var(--primary);
        font-weight: 700;
        font-size: 1.5rem;
        letter-spacing: -0.3px;
    }

    .modal-text {
        color: var(--primary);
        opacity: 0.75;
        line-height: 1.7;
    }

    /* =========================
       RESPONSIVE
    ========================== */
    @media (max-width: 768px) {
        .page-title {
            font-size: 1.75rem;
        }

        .profile-card,
        .content-card {
            padding: 1.5rem;
        }

        .section-title {
            font-size: 1.15rem;
        }

        .btn-primary-custom,
        .btn-outline-custom {
            width: 100%;
        }
    }