.ragunda-footer {
    background: #1a1a1a;
    color: #fffbe6;
    padding: 60px 20px 40px 20px;
    width: 100%;
}
.ragunda-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.ragunda-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ragunda-footer__title {
    font-family: 'Gotkin', var(--ragunda-font, Arial, sans-serif);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #fffbe6;
    line-height: 1.2;
}
.ragunda-footer__title--brand {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.ragunda-footer__title:not(.ragunda-footer__title--brand) {
    font-size: 1.2rem;
}
.ragunda-footer__description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    color: #fffbe6;
    opacity: 0.9;
}
.ragunda-footer__content {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #fffbe6;
    opacity: 0.9;
    margin-top: 0;
    padding-top: 0;
}
.ragunda-footer__content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ragunda-footer__content li {
    margin: 0;
    padding: 0;
}
.ragunda-footer__content a {
    color: #fffbe6;
    text-decoration: none;
    transition: color 0.2s;
    opacity: 0.9;
}
.ragunda-footer__content a:hover {
    color: #ffbd00;
    opacity: 1;
}
.ragunda-footer__made-by {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 12px;
    color: #fffbe6;
    opacity: 0.8;
    margin-top: auto;
}
.ragunda-footer__loile-link {
    color: #ffbd00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.ragunda-footer__loile-link:hover {
    color: #ffd700;
}
.ragunda-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ragunda-footer__list-item {
    margin: 0;
    padding: 0;
}
.ragunda-footer__link,
.ragunda-footer__text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    color: #fffbe6;
    text-decoration: none;
    transition: color 0.2s;
    opacity: 0.9;
}
.ragunda-footer__link:hover {
    color: #ffbd00;
    opacity: 1;
}
.ragunda-footer__socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ragunda-footer__social-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
    opacity: 0.9;
}
.ragunda-footer__social-link:hover {
    opacity: 1;
}
.ragunda-footer__social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .ragunda-footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
    }
    .ragunda-footer__column {
        order: 1;
    }
    .ragunda-footer__column--brand {
        order: 5;
    }
    .ragunda-footer__title--brand {
        font-size: 2rem;
    }
    .ragunda-footer__made-by {
        margin-top: 1rem;
    }
}
@media (max-width: 480px) {
    .ragunda-footer {
        padding: 40px 20px 30px 20px;
    }

    .ragunda-footer__container {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .ragunda-footer__title {
        font-size: 1rem;
    }

    .ragunda-footer__title--brand {
        font-size: 1.5rem;
    }

    .ragunda-footer__description {
        font-size: 12px;
        line-height: 1.4;
    }

    .ragunda-footer__content {
        font-size: 12px;
    }

    .ragunda-footer__made-by {
        font-size: 11px;
    }
}

@media (min-width: 901px) and (max-width: 1200px) {
    .ragunda-footer__container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 2rem;
    }
} 