.card {
    padding: 20px;
    border-radius: 8px;
    margin: 1% 4%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.list-group-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 12px;
}

.custom-btn-background {
    background-color: #B02519 !important;
    color: #fff !important;
}

.custom-btn-outline-background {
    border-color: #B02519 !important;
    color: #B02519 !important;
}

.custom-btn-outline-background:hover {
    border-color: #B02519 !important;
    background-color: #B02519 !important;
    color: white !important;
}

.btn-custom {
    width: 100%;
    padding: 12px;
    background-color: #B02519;
    font-size: 16px;
    margin-bottom: 10px;
}

.custom-color {
    color: #B02519 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-md-8 {
        margin-bottom: 20px;
    }


    .btn-custom {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {

    .list-group-item {
        font-size: 14px;
        padding: 10px;
    }

    .btn-custom {
        font-size: 14px;
        padding: 8px;
    }
}