.footer-section {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 64px);
    background: #15224D;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(40px, 6vw, 60px);
}

.footer-content {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 6vw, 60px);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    width: clamp(60px, 8vw, 77px);
    height: clamp(60px, 8vw, 77px);
    background: white;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents the logo from shrinking */
}

/* Key fix for image sizing */
.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* This ensures the image fits without distortion */
    /* padding: 8px; */
    /* Adds some space around the image */
}

.footer-logo-text {
    color: white;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    line-height: 1.4;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 48px);
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-label {
    color: white;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
}

.footer-text {
    color: white;
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.4);
}

.section-title-text {
    color: white;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    margin-bottom: 8px;
}

.link-item {
    color: white;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
    text-decoration: none;
    padding: 4px 0;
    transition: opacity 0.3s;
}

.link-item:hover {
    opacity: 0.7;
}

.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: white;
    opacity: 0.3;
}

.footer-copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    color: white;
    font-size: clamp(12px, 1.5vw, 14px);
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-link {
    color: white;
    font-size: clamp(12px, 1.5vw, 14px);
    text-decoration: underline;
}

/* Responsive utilities */
@media (max-width: 767px) {
    .footer-copyright-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-links {
        justify-content: flex-start;
    }
}