body {
    background: #f8fafc;
}

.hero {
    background: linear-gradient(135deg, #0d6efd, #0bb8ff);
    color: #fff;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d6efd, #0bb8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 16px;
}

.service-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 14px;
    height: 110px;
    object-fit: cover;
    background: #e5e7eb;
}

.footer-cta {
    background: linear-gradient(135deg, #0d6efd, #0bb8ff);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.footer-cta a {
    margin: 10px;
}

/*.service-card ul {*/
/*    list-style-type: none;*/
/*    position: relative;*/
/*}*/

/*.service-card ul li {*/
/*    padding-left: 30px;*/
/*}*/

/*.service-card ul li::before {*/
/*    content: "✔";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    color: #0d6efd; !* Bootstrap primary *!*/
/*    font-weight: bold;*/
/*    font-size: 16px;*/
/*}*/

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-card ul li::before {
    content: "\f05d";
    font-family: "fontAwesome";
    position: absolute;
    left: 0;
    top: 2px;
    color: #198754; /* success green */
    font-size: 16px;
}
#modalList {
    list-style: none;
    padding-left: 0;
}

#modalList li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

#modalList li::before {
    content: "\f05d";
    font-family: "fontAwesome";
    position: absolute;
    left: 0;
    top: 2px;
    color: #198754;
    font-size: 16px;
}

