/* =========================
   FOOTER WRAPPER
========================= */
#footer {
    background: linear-gradient(90deg, #454547, #0b5ed7);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #ffffff;
    margin-top: 40px;
    padding: 20px 0;
}

/* =========================
   COPYRIGHT AREA
========================= */
#copyright {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
}

/* TEXT */
#copyright span {
    display: inline-block;
    opacity: 0.9;
    color:#fff;
}

/* LINKS INSIDE FOOTER */
#footer a {
    color: #ffffff;
    text-decoration: underline;
}

#footer a:hover {
    text-decoration: none;
}

/* =========================
   BORDER TOP (OPTIONAL)
========================= */
#footer {
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    #footer {
        padding: 15px 10px;
    }

    #copyright {
        font-size: 12px;
    }
}