.contact {
    width: 100%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-header,
.contact-content {
    width: 60%;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.contact-content-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-content-text {
    width: 100%;
}

.contact-content-icons {
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.contact-content-icons li {
    display: inline;
    padding: 1px 5px;
}

.contact-content-icons img {
    width: 20px; /* Adjust the size as needed */
}

.contact-content-2 {
    width: 40%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    height: 150px;
    resize: none;
}

input[type="submit"] {
    width: 100%;
    background-color: #D5BA8C;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

input[type="submit"]:hover {
    background-color: #404449;
}
