/* Footer Styles */
.xentara-footer {
    font-family: 'Hanken Grotesk', sans-serif;
    background-color: #01192d;
    color: white;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 20px !important;
    text-align: left !important;
}

.footer-logo img {
    max-width: 180px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-item i {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item a {
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-item a:hover {
    color: #93c5fd;
}

.social-media {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.social-media a {
    color: white;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #93c5fd;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: #93c5fd;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-links a {
     font-size: 1rem;   
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-column: span 2;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links a {
     font-size: 1.2rem;   
    }
    
    .footer-links {
        grid-column: auto;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }
}