.footer {
    background-color: var(--dark-layout);
    color: white;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px 0;
}

.footer-section h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.footer-section p {
    margin: 5px 0;
}

.social-links {
    list-style-type: none;
    padding: 0;
}

.social-links li {
    margin: 5px 0;
}

.social-links a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: 0.2s;
}

.social-links a:hover {
    text-decoration: underline;
    color: #555;
}

.pages-links, .docs, .data{
    list-style-type: none;
    padding: 0;
}

.pages-links a, .docs a{
    text-decoration: none;
    color: var(--white);
    transition: 0.2s;
}

.pages-links a:hover, .docs a:hover{
    text-decoration: underline;
}


.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin: 10px 0;
    }
}
