footer {
    background-color: #363636;
    color: white;
    padding: clamp(20px, 3vw, 40px) clamp(10px, 2vw, 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer-section {
    flex: 1 1 0;
    min-width: 150px;
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-section p {
    margin: 4px 0;
    line-height: 1.6;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff4d4d;
}

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

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff4d4d;
}

.footer-bottom {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #4a4a4a;
    font-size: 0.85em;
    color: #aaa;
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
        padding: 0 20px;
    }
    .footer-section {
        text-align: center;
        flex: 1 1 100%;
        min-width: auto;
        margin: 0;
    }
    .footer-section-small {
        flex: 1 1 40%;
        max-width: 45%;
    }
}
