/* Footer Styles */
.site-footer {
    background-color: rgba(0, 246, 167, 0.1);
    padding: 32px 16px;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Back to Top Button */
.back-to-top-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.back-to-top-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 246, 167, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.back-to-top-button:hover {
    background-color: rgba(0, 246, 167, 0.2);
}

.arrow-up-icon {
    width: 20px;
    height: 20px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(45deg);
    margin-top: 6px;
}

.back-to-top-text {
    margin-top: 6px;
    font-size: 16px;
}

/* Logo */
.footer-logo-container {
    margin-bottom: 32px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.footer-logo {
    width: 100%;
    height: auto;
}

/* Navigation */
.footer-navigation-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-nav-column {
    margin-right: 48px;
    margin-bottom: 24px;
}

.footer-nav-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
}

.footer-menu,
.footer-pages-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-pages-menu li {
    margin-bottom: 12px;
}

.footer-menu-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 6px 0;
    display: inline-block;
}

.footer-menu-link:hover {
    color: #00F6A7;
}

/* Social Media */
.footer-social-container {
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
}

.footer-social-text {
    font-size: 16px;
    margin-bottom: 4px;
}

.footer-made-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon-link {
    display: inline-block;
    padding: 8px;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-3px);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 246, 167, 0.5);
    margin-bottom: 8px;
}

/* Copyright */
.footer-copyright {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
    padding: 0 8px;
}
.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-navigation-container {
        flex-direction: column;
    }
    
    .footer-nav-column {
        margin-right: 0;
        width: 100%;
    }
    
    .footer-logo-container {
        width: 100%;
    }
}