.contact {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 84px 0;
    background-color: #f4f4f4;
}

.contact .container {
    flex-direction: column;
    align-items: center;
}

.contact .container .contact-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
    max-width: 512px;
}

.contact .container .contact-wrapper p {
    text-align: center;
    max-width: 415px;
}

.contact .container form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 415px;
}

.contact .container form,
.contact .container button {
    width: 100%;
}

.contact .container form input {
    padding: 16px 24px;
    border: solid #cdcdcd;
    border-radius: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    height: 40vh;
    max-width: 400px;
    max-height: 400px;
    border-radius: 12px; 
    background-color: #f4f4f4;
    margin: 15% auto;
    padding: 20px;
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: black;
    background: none;
    border: none;
}