* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services_for_events {
    background-color: white;
    width: 100%;
    height: 670px;
    padding: 100px;
}

.services_for_events h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 38px;
    color: #4b4848;
    width: 45%;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.services_container {
    display: flex;
    margin: 0px auto, 0, auto;
    gap: 25px;
    width: 85%;
}

.services_card img {
    width: 270px;
    height: 250px;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.services_card img:hover {
    transform: scale(0.9);
}

.services_card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0px;
    font-family: sans-serif;
}

.services_card p {
    font-size: 1rem;
    color: #474747;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.services_card {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.services_card.animate-in {
    opacity: 1;
    transform: scale(1);
}