/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Components */
.section-title {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--fs-base);
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: #fff;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #FEE500;
    color: #3C1E1E;
    padding: 0.625rem 1.125rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--fs-sm);
    transition: var(--transition);
}

/* Badges & Tags */
.badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 20px;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* Cards & Containers */
.card-soft {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.card-soft:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Icons & Steps */
.list-icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-right: 1.25rem;
}
.list-icon.red { background-color: #fee2e2; }
.list-icon.blue { background-color: #e0f2fe; }
.list-icon.orange { background-color: #ffedd5; }

.step-circle {
    width: 100px; height: 100px; border-radius: 50%; background-color: var(--primary);
    margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;
    font-size: 36px; font-weight: 800; color: #fff; box-shadow: var(--shadow-blue);
}
.step-last .step-circle { background-color: var(--success); box-shadow: 0 10px 20px rgba(16,185,129,0.2); }

/* Standard Table for Dashboards */
.table-std { width: 100%; border-collapse: collapse; background: #fff; }
.table-std th {
    background: #f8fafc; padding: 1rem 1.5rem; text-align: left;
    font-size: var(--fs-xs); font-weight: 700; color: var(--text-muted);
    border-bottom: 1px solid var(--border); text-transform: uppercase;
}
.table-std td { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); font-size: var(--fs-sm); }
.table-std tr:hover { background: #f1f5f9; }

/* Modal Content Styling (Policies) */
.borom-policy-content h1, 
.borom-policy-content h2, 
.borom-policy-content h3 {
    color: var(--dark);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.borom-policy-content p,
.borom-policy-content li {
    font-size: var(--fs-base);
    line-height: 1.6;
    margin-bottom: 1em;
}
