.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.1);
}

.service-title {
    color: #0056b3;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.service-description ul {
    padding-left: 0;
}

.service-description li {
    margin-bottom: 0.5rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.lead {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1rem;
    }
}