.services {
    padding: 50px;
    text-align: center;
}
.services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.service-category {
    margin-bottom: 40px;
}
.service-category h3 {
    font-size: 2rem;
    color: #d81b60;
    margin-bottom: 15px;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}
.service-item h4 {
    color: #d81b60;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.service-item p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.menu-list img{
  display: block;
  margin: auto;
  width: 50%;
}

@media only screen and (max-width: 768px) {
    .menu-list img {
        width: 90%;
    }
}