footer {
    background: #16292F;
    padding: 40px 0;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

footer p,
footer a {
    color: #ccc;
    font-size: 0.85rem;
    text-decoration: none;
}

footer a:hover {
    color: #3498db !important;
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.5s ease;
    text-decoration: none;
    background: #A9A08D;
}

.social-icon:hover {
    background: #16292F;
    color: #A9A08D;
    transform: rotate(360deg);
}

.footer-line {
    border: 0;
    border-top: 1px solid #A9A08D;
    margin: 20px 0;
    width: 100%;
}

.return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #A9A08D;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.return-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.return-to-top:hover {
    background: #16292F;
    color: #A9A08D;
    transform: translateY(-5px);
}