.foteer {
    background-color: #975735;
    color: white;
    padding: 50px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.foteer .info {
    margin-left: 100px;
    width: 40%;
    text-align: left;
}

.foteer h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.foteer h2 {
    font-size: 30px;
    color: orange;
    margin-top: 20px;
    text-transform: uppercase;
}

.foteer h3 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}


.foteer form {
    margin-right: 100px;
    margin-top: 50px;
    width: 50%;
    max-width: 500px;
    background: #975735;
    padding: 20px;
    border-radius: 10px;
    color: black;
}

form label {
    display: block;
    font-weight: bold;
    color: orange;
    margin-top: 10px;
}

.form-group {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.input-container {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.input-container label {
    font-weight: bold;
    color: orange;
    margin-bottom: 5px;
}

.input-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid gray;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-container input:hover {
    transform: scale(0.95);
    border-color: black;
    transition: all 0.3s ease;
}

.input-container-2 {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.input-container-2 label {
    font-weight: bold;
    color: orange;
    margin-bottom: 5px;
}

.input-container-2 input {
    width: 100%;
    padding: 10px;
    border: 1px solid gray;
    border-radius: 5px;
    font-size: 1rem;
}

.input-container-2 input:hover {
    transform: scale(0.95);
    border-color: black;
    transition: all 0.3s ease;
}


input,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid gray;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: none;
    height: 100px;
}

textarea:hover {
    transform: scale(0.95);
    border-color: black;
    transition: all 0.3s ease;
}



button {
    background-color: white;
    color: #D26A00;
    border: 2px solid #D26A00;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-left: 230px;
}

button:hover {
    background-color: #D26A00;
    color: white;

}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 8px;
    flex-wrap: wrap;
    height: 0;
}

.footer-links {
    flex: 1;
    text-align: left;
}

.footer-links a {
    color: orange;
    text-decoration: none;
    margin-right: 17px;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    flex: 1;
    text-align: center;
    color: white;
    font-size: 18px;
}

.footer-privacy {
    flex: 1;
    text-align: right;
    margin-right: 40px;
}

.footer-privacy a {
    color: orange;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
}

.footer-privacy a:hover {
    text-decoration: underline;
}