.intro-services {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
.intro-services h2 {
    color: #002B5B;
    font-size: 32px;
    margin-bottom: 20px;
}
.intro-services p {
    font-size: 17px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    background: #f5f7fa;
    padding: 60px 20px;
}
.services-list h2 {
    text-align: center;
    font-size: 32px;
    color: #002B5B;
    margin-bottom: 50px;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
.service-card h3 {
    color: #002B5B;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 15px;
    color: #555;
}
