
.image-link a img {
    width: 35px;
}

.image-link a:hover img {
   filter: opacity(0.5);
}

textarea, input {
    font-family: inherit;
    font-size: inherit;
}

/* Footer Container */
.site-footer {
    background-color: #3e3e3e;
    color: #ffffff;
    padding: 60px 10%;
    font-family: Arial, sans-serif;
}

/* Flex Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.social-icons {
    margin-bottom: 25px;
}

.social-icons a {
    color: white;
    margin-right: 20px;
    font-size: 1.2rem;
    text-decoration: none;
}

.brand-title {
    font-size: 2.2rem;
    margin: 10px 0;
}

.brand-email {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.legal-info {
    font-size: 0.85rem;
    line-height: 1.6;
}

.form-heading {
    font-size: 2rem;
    margin: 0;
}

.form-subheading {
    margin-top: 5px;
    margin-bottom: 40px;
}

/* Input Rows */
.form-row {
    display: flex;
    gap: 30px;
}

.field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    flex: 1;
}

/* Input Styles */
label {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

input, textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    color: white;
    padding: 8px 0;
    outline: none;
    transition: border 0.3s ease;
}

/* Orange Hover */
input:hover, 
textarea:hover {
    border-bottom-color:rgb(35, 127, 255);
}

/* Submit Section */
.button-container {
    display: flex;
    justify-content: flex-end;
}

.site-footer button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 50px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button Hover */
.site-footer button:hover {
    border-color:rgb(35, 127, 255);
    color:rgb(35, 127, 255);
}

@media screen and (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}
