.improved-footer {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 20px auto;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #583030 0%, #4a2828 100%);
    color: rgba(247, 246, 243, 1);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(88, 48, 48, 0.8);
    border-radius: 24px;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}


.footer-column {
    flex: 1 1 220px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column--brand {
    flex: 1 1 280px;
    max-width: 320px;
    align-items: flex-start;
}

.footer-column--info,
.footer-column--resources {
    margin-left: 32px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Futura', 'Futura Md BT', 'Arial', sans-serif;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link,
.footer-link:visited {
    color: rgba(247, 246, 243, 0.85);
    font-size: 16px;
    font-family: 'Futura', 'Futura Md BT', 'Arial', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover,
.footer-link:focus,
.footer-link:active {
    color: rgba(247, 246, 243, 1);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(247, 246, 243, 0.4);
}

.social-icons-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover,
.social-icon:focus {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.social-icon__image {
    width: 32px;
    height: 32px;
}

.cha9a9a-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    text-align: center;
    font-family: 'Futura', 'Futura Md BT', 'Arial', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.powered-by-text,
.association-name {
    margin: 0;
}

.association-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(247, 246, 243, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.association-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .footer-content {
        padding: 32px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .improved-footer {
        margin: 10px;
    }

    .footer-content {
        padding: 28px 20px;
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column--brand {
        align-items: center;
    }

    .footer-column--info,
    .footer-column--resources {
        margin-left: 0;
    }

    .footer-links {
        align-items: center;
    }

    .social-icons-container {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 20px 16px;
    }

    .footer-section-title {
        font-size: 16px;
    }

    .footer-link {
        font-size: 14px;
    }

    .social-icon__image {
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}
