footer {
    background: linear-gradient(90deg, #232526 0%, #414345 100%);
    color: #fff;
    padding: 40px 0 20px 0;
    width: 100%;
    font-size: 1.1rem;
    position: relative;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #ffd700;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content ul li {
    margin-bottom: 8px;
}

footer a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer hr {
    border: none;
    border-top: 1.5px solid #ffd700;
    margin-bottom: 25px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        text-align: center;
    }
    .footer-content{
        width: 100px;
    }
}