.footer-container {
    display: flex;
    justify-content: space-between;
    background-color: #fff; /* Changed to white */
    color: #333; /* Darkened text for contrast */
    padding: 40px 20px;
    flex-wrap: wrap;
}

.footer-column h3 {
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
    color: #333; /* Darkened text for readability */
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background-color: #f4f4f4; /* Light gray for a subtle distinction */
    margin-top: 20px;
    color: #555; /* Adjusted text color for visibility */
    font-size: 14px;
}

.footer-column input[type="email"] {
    padding: 10px;
    width: 80%;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

.footer-column button {
    background-color: #f39c12;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.footer-column button:hover {
    background-color: #e67e22;
}

.footer-column a {
    margin-right: 10px;
    display: inline-block;
    color: #f39c12; /* Adjusted link color to match button */
}

.footer-column a img {
    width: 24px;
    height: 24px;
}
