/* Footer Styles */
footer {
    text-align: center;
    padding: 40px;
    margin-top: 60px;
    border-top: 2px solid #EE2E31;
    opacity: 0.7;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #EE2E31;
    color: #010001;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    font-weight: bold;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background-color: #C9E4CA;
    color: #EE2E31;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(238, 46, 49, 0.4);
}
