/* Десктоп */
.footer {
    background: #D9D9D9;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    color: #2B2B2B;
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

/* Десктопная адаптация */
@media (min-width: 1025px) {
    .footer-text {
        padding-left: 20%;
    }
}

/* Планшетная адаптация */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-text {
        padding-left: 10%;
    }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
        padding: 0 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 15px 0;
    }
    
    .footer-text {
        padding: 0 10px;
    }
}

@media (min-width: 481px) and (max-width: 600px) {
    .footer-text {
        padding: 0 15px;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .footer-text {
        padding: 0 20px;
    }
}