body {
    background-color: #F6F8FF;
    color: #0B1220;
}

/* Typography Scale */
h1 { font-size: 32px; font-weight: 700; line-height: 1.2; }
h2 { font-size: 24px; font-weight: 700; line-height: 1.3; }
h3 { font-size: 20px; font-weight: 700; line-height: 1.4; }
p, li { font-size: 15px; line-height: 1.6; color: #5B667A; }
.text-small { font-size: 13px; }

/* Custom Components */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #004BFF;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,75,255,0.15);
}
.btn-primary:hover {
    background-color: #003FE0;
    box-shadow: 0 6px 18px rgba(0,75,255,0.25);
    transform: translateY(-1px);
}
.btn-primary:active {
    background-color: #0033B8;
    transform: translateY(0);
}

.card {
    background: #FFFFFF;
    border: 1px solid rgba(11,18,32,0.12);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: rgba(0,75,255,0.3);
}
.recommended-card {
    border: 3px solid #004BFF;
    box-shadow: 0 12px 30px rgba(0,75,255,0.22), 0 0 0 2px rgba(0,75,255,0.10);
}
.recommended-card:hover {
    border-color: #003FE0;
    box-shadow: 0 16px 36px rgba(0,75,255,0.30), 0 0 0 3px rgba(0,75,255,0.14);
}
.form-input {
    width: 100%;
    padding: 10px 16px;
    font-size: 15px;
    border: 1px solid rgba(11,18,32,0.12);
    border-radius: 10px;
    background: #FFFFFF;
    transition: all 0.2s;
    color: #0B1220;
}
.form-input:focus {
    outline: none;
    border-color: #004BFF;
    box-shadow: 0 0 0 4px rgba(0,75,255,0.1);
}
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0B1220;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.alert-box {
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success {
    background: #ECFDF3;
    border-color: #A7F3D0;
    color: #065F46;
}
.alert-error {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #991B1B;
}

/* Scrollbar */
#form-container::-webkit-scrollbar { width: 6px; }
#form-container::-webkit-scrollbar-track { background: transparent; }
#form-container::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 10px; }
#form-container::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
