#contact-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

#contact-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.contact-section {
    /*     text-align: center;
    display: flex;
    flex-direction: row;
    gap: 20px; */
}

.contact-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-item strong {
    color: #288008;
}

.contact-adress {
    flex: 1;
    text-align: left;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}