.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.price-tag {
    font-weight: 700;
    font-size: 1.2rem;
    color: #dc3545;
}

.highlight-box {
    background-color: rgba(13, 110, 253, 0.05);
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.note-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}