footer {
    background: rgba(20, 20, 20, 0.95);
    border-top: 2px solid #ff5e00;
    margin-top: 80px;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.footer-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #ff7b00;
}

.footer-bottom {
    text-align: center;
    color: #808080;
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    color: #808080;
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;

}

@media (max-width: 768px) {
    footer {
        margin-top: 60px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}