
/* Services Sidebar */
.services-box {
    background: #ffffff;
        position: sticky;
    top: 20px;
}

.services-list a {
    border: none;
    border-bottom: 1px dashed #ccc;
    padding: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-left: 0;
}

.services-list a:last-child {
    border-bottom: none;
}

.services-list a:hover {
    background-color: #f1f1f1;
    padding-left: 20px;
    color: #000;
}

/* Content Styling */
.content-box h3 {
    font-weight: 600;
}

.content-box p {
    color: #555;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .services-box {
        margin-bottom: 20px;
    }
}