#footer {
    background: linear-gradient(90deg, #065f46, #047857);
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 2px solid #10b981;
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.cont {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}

#Head {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.cont p, .cont a {
    font-size: 1rem;
    margin: 5px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cont a:hover {
    color: #10b981;
    transform: scale(1.1);
}

#news .newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

#news .newsletter input {
    padding: 10px;
    border: 2px solid #10b981;
    border-radius: 5px;
    font-size: 1rem;
    width: 250px;
    outline: none;
}

#news .newsletter button {
    padding: 10px 20px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

#news .newsletter button:hover {
    background: #047857;
}