.page-heading {
    font-weight: 600;
}
.bold {
    font-weight: 700;
}
.required {
    color: red !important;
}
.sub-text {
    color: #3C3C3C;
    font-size: 14px;
}

/* Quick Help Cards */
.support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #DCDFEA;
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    text-decoration: none;
    color: #0E101B;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.support-card:hover {
    border-color: #FEA327;
    box-shadow: 0 4px 16px rgba(254, 163, 39, 0.12);
    color: #0E101B;
    text-decoration: none;
}
.support-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFF7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: #FEA327;
}
.support-card h5 {
    margin-bottom: 8px;
}
.support-card p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}
.support-card-link {
    color: #FEA327;
    font-weight: 600;
    font-size: 14px;
}
.support-card:hover .support-card-link {
    text-decoration: underline;
}

/* Support Form */
.support-form-wrapper {
    background: #F9F9FB;
    padding: 32px;
    border-radius: 16px;
}
.support-form-wrapper .form-label {
    font-weight: 600;
    font-size: 14px;
    color: #0E101B;
}
.support-form-wrapper .form-control,
.support-form-wrapper .form-select {
    border: 1px solid #DCDFEA;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 14px;
}
.support-form-wrapper .form-control:focus,
.support-form-wrapper .form-select:focus {
    border-color: #FEA327;
    box-shadow: 0 0 0 3px rgba(254, 163, 39, 0.15);
}

/* Spacing utility */
.mt-6 {
    margin-top: 4rem !important;
}

/* Responsive */
@media (max-width: 576px) {
    .support-form-wrapper {
        padding: 20px 16px;
    }
    .support-card {
        padding: 24px 16px;
    }
}
