.services {
    background-color: #ffffff;
    padding: 80px 20px;
    width: 100%;
    text-align: center;
}

.services h1 {
    font-size: 36px;
    color: #2D3436;
    margin-bottom: 20px;
}

.services p {
    font-size: 18px;
    color: #7B8A8B;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #F4F6F8;
    border-radius: 10px;
    padding: 30px 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #4F9DFF;
}

.service-card h2 {
    font-size: 24px;
    color: #2D3436;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #7B8A8B;
}
