.student-card {
    max-width: 420px;
    padding: 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--student-color, #00D46A);
    font-family: Arial, sans-serif;
    direction: rtl;
    }
    
    .student-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--student-color, #00D46A) 18%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
    }
    
    .student-card h3 {
    margin: 0 0 6px;
    color: #1a1a1a;
    font-size: 24px;
    }
    
    .student-card p {
    margin: 0 0 18px;
    color: #666666;
    }
    
    .student-card__button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--student-color, #00D46A);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    }