.highlight-category {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.highlight-category h3 {
    color: #2ecc71;
    margin-top: 0;
    margin-bottom: 10px;
}

.highlight-category p {
    color: #333;
    line-height: 1.6;
}

/* Service Card Styles */
.service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-card h3 {
    color: #2ecc71;
    margin-top: 0;
    margin-bottom: 10px;
}

.service-card p {
    color: #333;
    line-height: 1.6;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
} 