footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 10px;
    text-align: center;
    max-width:1200px;
    margin:auto;
}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 10px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 100px 10px 10px;
}

.section-title {
    margin-bottom: 10px;
}

.footer-note {
    margin-top: 20px;
    color: #cccccc;
    font-size: 0.9em;
    text-align: center;
}

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