.service-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card{
    display: flex;
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    max-width: 900px;
    align-items: center;
    background: white;
}

.service-img {
    flex: 0.4;
    width: 250px;
    height: 180px;
    margin-right: 20px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-details h2 {
    font-size: 20px;
    margin: 10px 0;
}

.service-details p {
    font-size: 18px;
    margin: 10px 0;
}

.service-hidden-details {
    display: none;
    margin-top: 10px;
    font-size: 18px;
}

.view-details {
    background-color: #00b38f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 10px;
}

.view-details:hover {
    background-color: #00997a;
}
