body {
    margin: 0;
    font-family: sans-serif;
    background: #f5f5f5;
}

.header {
    background: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

.services-container {
    display: grid;
    gap: 20px;
    padding: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}