

/* Footer styles */
footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0;
    width: 100%;
    position: relative;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.white{
    color: #fff;
}

.footer-section {
    flex: 1;
    padding: 0 20px;
    margin-bottom: 20px;
}

.footer-section h2 {
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: #fff;
}



.socials a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    display: inline-block;
}

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

.links ul li {
    margin-bottom: 10px;
}

.links ul li a {
    color: #fff;
    text-decoration: none;
}



.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-bottom p {
    text-align: center;
    color: white ;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.socials{

    color: #fff;
}

.footer-bottom-links a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}

.footer-section.links a:hover {
    text-decoration: underline;
    color: rgb(255, 255, 255);
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
   
    details {
        max-width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}
