/* Footer Section */
.footer {
    background: #222;
    color: white;
    padding: 25px 10px;
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Hover Effects for Links */
a {
    text-decoration: none;
    color: #FF9800;
    font-weight: bold;
    transition: color 0.3s ease;
}
a:hover {
    color: #E65100;
}

