footer {
    background: #111;
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
}

.footer-section:first-child {
    min-width: 220px;
    max-width: 260px;
}

.footer-section h4 {
    color: #ffaa00;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #ffaa00;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo span:first-child,
.footer-logo span:last-child {
    color: #ffaa00;
    font-size: 20px;
}

.footer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
    color: #555;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-container {
        max-width: 100%;
        padding: 30px 15px 20px 15px;
    }

    .footer-content {
        gap: 5px;
        justify-content: space-between;
    }

    .footer-section {
        flex: 0 0 calc(50% - 25px);
        min-width: auto;
        max-width: none;
        text-align: center;
    }

    .footer-section:first-child {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 10px;
        min-width: auto;
        max-width: none;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
        margin: 0 auto;
    }

    .footer-section h4 {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }
}

@media (max-width: 150px) {
    .footer-container {
        padding: 25px 16px 20px 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .footer-section {
        flex: 0 0 auto;
        width: 100%;
        max-width: 150px;
        text-align: center;
    }

    .footer-section:first-child {
        margin-bottom: 0;
        max-width: 150px;
    }

    .footer-logo {
        justify-content: center;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.4;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 13px;
        padding: 5px 10px;
        display: inline-block;
    }

    .footer-bottom {
        padding-top: 16px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}