.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    margin: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-item i {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-item:hover {
    transform: scale(1.1);
}

.contact-item a {
    text-decoration: none;
    color: #000000;
}

.contact-item a:hover {
    color: #000000;
}

.working-hours {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.working-hours h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.working-hours p {
    font-size: 18px;
    margin: 5px 0;
}