.site-footer {
    background-color: rgb(87, 4, 142);
    color: #ecf0f1;
    padding: 40px 0 0 0;
    margin-top: 50px;
}

/* Top section with logo */
.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
    text-align: center;
    border-bottom: 1px solid #34495e;
    font-size: 37px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo i {
    color: #3498db;
}

.company-desc {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
}

/* Links section with columns */
.footer-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between; /* Changed from space-around to space-between */
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    text-align: left;  /* Ensure text alignment is consistent */
}

.footer-column h3 {
    color: #3498db;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-column:last-child {
    margin-right: 0;  /* Remove any extra margin on the last column */
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #bdc3c7;
}

.footer-column h3 {
    color: #3498db;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: left;  /* Keep headings left-aligned */
}

/* Bottom section */
.footer-bottom {
    background-color: #cecad1;
    padding: 20px 0;
    font-size: 14px;
    color: #021420;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #091c29;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.app-footer-bottom {
    background-color: #cecad1;
    padding: 5px 0;
    font-size: 12px;
    color: #54595b;
}


/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #ecf0f1;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #3498db;
}


/* Responsive design */
@media (max-width: 768px) {
    .footer-links-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-column {
        min-width: unset;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}