h1 {
    margin: 0;
    font-size: 2.5em;
}
h2 {
    color: #00a1e9;
    border-bottom: 2px solid #00a1e9;
    padding-bottom: 10px;
}
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.service-card h3 {
    color: #00a1e9;
    margin-top: 0;
}
.intro {
    background-color: white;
    padding: 25px;
    border-radius: 8px;    
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
}