/* Footer Section Styles */
.footer-section {
    width: 100%;
    background: #264670;
    padding: 4rem 0 2rem;
    position: relative;
}

/* Container */
.footer-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
}

/* Content */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

/* Logo */
.footer-logo {
    /* margin-bottom: 1rem; */
    width: 60%;
    min-width: 360px;
}

.footer-logo-img {
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

/* Description */
.footer-description {
    /* max-width: 600px; */
    margin: 0 auto;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: #e8e4d2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social */


.footer-social-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e8e4d2;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(232, 228, 210, 0.1);
    border: 1px solid rgba(232, 228, 210, 0.2);
    border-radius: 50%;
    color: #e8e4d2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(232, 228, 210, 0.2);
    border-color: rgba(232, 228, 210, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.footer-social-link:hover svg {
    transform: scale(1.1);
}

/* Media Query - Only one as requested */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    

    
    .footer-text {
        font-size: 0.8rem;
    }
    
    .footer-social-links {
        gap: 1rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }
}
