footer {
    background-color: #1a1a1a;
    color: white;
    font-family: Arial, sans-serif;
    padding: 20px 0;
}

footer h1, footer h2, footer h3, footer h4 {
    color: blueviolet;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-between;
    padding: 20px;
}

.column {
    width: 100%; /* Full width by default */
    padding: 20px;
    box-sizing: border-box; /* Include padding in width */
}

.contact-info, .sitemap, .about-us, .legal {
    list-style: none;
    padding: 0;
}

.contact-info li, .sitemap li, .about-us li, .legal li {
    margin-bottom: 10px;
}

.contact-info li span {
    display: inline-block;
    width: 150px;
}

.logo {
    display: block;
    margin: 0 auto;
    width: 150px;
    height: auto;
}

.sitemap li:before {
    content: " ";
    font-weight: bold;
    color: #F1C232;
}

elite, elitefooter {
    background: linear-gradient(to right, rgb(139, 120, 13), rgb(74, 64, 64));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

elite {
    font-size: 36px;
}

elite1 {
    font-size: 12px;
}

elite2 {
    font-size: 16px;
}

elitefooter {
    font-size: 20px;
}

a {
    color: white;
    text-decoration: none; /* Removes the underline */
    font-size: 12px;
}

li {
    color: white;
    font-size: 12px;
    
}

@media (min-width: 768px) {
    .column {
        width: 48%; /* Two columns on medium screens */
    }
}

@media (min-width: 1024px) {
    .column {
        width: 23%; /* Four columns on large screens */
    }
}

/* Stack columns on top of each other for small screens */
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .column {
        width: 100%;
        
    }

    .contact-info li span {
        width: auto; /* Adjust span width for small screens */
    }
}