.footer {
    background-color: #398092;
    color: #fff;
    padding: 20px 1rem;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    overflow-x: hidden; /* estää vaakavuodon */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px;
    box-sizing: border-box;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section li {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.team {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
    color: #bbb;
    font-size: 14px;
    box-sizing: border-box;
}

/* Responsiivisuus */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        flex: 1 1 100%;
        text-align: center;
        max-width: 100%;
    }
}
