.site-footer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 60px 0 20px;
    border-top: 3px solid #ffcc00;
    position: relative;
    border-radius: 15px 15px 0 0; /* Added rounded corners at the top */
    margin-top: 40px; /* Added space from top content */
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.5), transparent);
}

.footer-container {
    padding: 0 20px; /* Added horizontal padding instead of width */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffcc00;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffcc00;
    font-size: 1.5rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Links Section */
.footer-links {
    list-style: none;
}

.footer-links li {
    list-style: none !important;
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

/* Contact Section */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: #ffcc00;
    margin-right: 10px;
    width: 20px;
}

.footer-contact a{
    text-decoration: none;
    color: #cccccc;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.social-link:hover {
    color: #0a0a0a;
    background-color: #ffcc00;
    border-color: #ffcc00;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}