footer {
    background-color: var(--wp--preset--color--primary-dark);
    color: var(--wp--preset--color--base);
    font-size: 16px;
}

.footer-column-links {
    display: flex;
    gap: 16px;
    flex-grow: 1;
}

.footer-column-links a:hover {
    text-decoration: underline;
}

.footer-column-links>div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.footer-header {
    font-size: 20px;
    font-weight: bold;
}

.meg-footer {
    display: flex;
    justify-content: center;
    font-weight: normal;
    background-color: #0E2998;
    font-family: Tahoma, Helvetica, Arial, sans-serif;
    color: #fff;
    border-top: 1px solid #eaeaea;
    padding: 30px 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    padding: 48px 0px 0px 0px;
    flex-grow: 1;
    gap: 3rem;
    width: 100%;
}



.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

.footer-column.company-info {
    gap: 2rem;
    max-width: 350px;
}

.footer-info-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-header {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.icon-label-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    line-height: 1.5;
}

.icon-label-group.center-align {
    align-items: center;
}

.icon-label-group i {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 2px;
}

.icon-label-group div {
    display: flex;
    flex-direction: column;
}

.footer-column-links div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    text-decoration: none;
    color: #fff;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 57px;
    width: 100%;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D1D5DC;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.8;
}

.meg-footer {
    padding: 20px;
}

.footer-content {
    padding: 0;
    gap: 2rem;
}

.footer-top-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.footer-column {
    width: 100%;
    min-width: unset;
}

@media (min-width: 1024px) {
    .footer-top-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
        max-width: 1251px;
        margin: 48px 32px;
    }

    .footer-bottom-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: start;
    }
}