/* Custom Footer Style Override */
footer {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer-content {
    margin-bottom: 10px;
}

footer a {
    color: #00d9ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.social-icons a {
    display: inline-block;
    font-size: 28px;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: #00d9ff;
} 