/* Breadcrumb */
.breadcrumb {
    background-color: #063970;
    padding: 10px 0;
    font-size: 0.9rem;
    align-items: center;
    display: flex;
    gap: 0.5rem;
}
.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: #dcdcdc;
    opacity: 0.6;

}


/* Service Detail Page */
.service-detail {
    padding: 40px 0;
    background: #fff;
}
.service-detail .service-title {
    color: #154c79;
    margin-bottom: 20px;
}
.service-detail p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.service-detail ul {
    list-style: disc;
    margin-left: 20px;
    line-height: 1.6;
}
