.footer {
    background: linear-gradient(to bottom, #EFF6FF, #DBEAFE);
    margin-top: 80px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: 1;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: 1;
        margin-top: -12px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
    text-decoration: none;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1E3A8A;
}

.footer-description {
    color: #4B5563;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 16px;
}

.footer-subdesc {
    color: #6B7280;
    font-size: 12px;
}

.footer-section-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: #1E3A8A;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #4B5563;
}

.footer-links a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0066FF;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4B5563;
}

.footer-contact-item a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #0066FF;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: #0066FF;
}

.footer-language {
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.footer-language select {
    background: white;
    border: 1px solid #BFDBFE;
    color: #374151;
    border-radius: 8px;
    padding: 8px 32px 8px 16px;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230066FF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
}

.footer-language select:hover {
    border-color: #0066FF;
}

.footer-disclaimer {
    background: rgba(191, 219, 254, 0.5);
    padding: 24px;
}

.footer-disclaimer p {
    max-width: 1024px;
    margin: 0 auto;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.75;
    text-align: center;
}