@media screen and (min-width: 1100px){
    .page-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
}
.service-card {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
}

.service-card:hover{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;

}
.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.service-info h2 {
    color: #001A72;
}
.service-info p {
    font-size: 16px;
    line-height: 1.6;
}
.service-info a {
    color: #001A72;
    text-decoration: none;
}
.service-info a:hover {
    text-decoration: underline;
}
.service-action-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    color: #455fa4;
    background-color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    border-style: solid;
    border-width: 2px;
    border-color: #0041b3;
}
.service-action-button:hover {
    background-color: #0041b3;
    color: #ffffff;
    text-decoration: none;
}
.service-details {
    margin-top: 20px;
}
.service-details p {
    display: flex;
    align-items: center;
    margin: 5px 0;
}
.service-details p img {
    margin-right: 10px;
}