body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.footer {
    /* color: #ccc; */
    background-color: #333;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    color:whitesmoke;
    margin-bottom: 10px;
    user-select: none;
}

.footer-section a {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    font-weight: bold;
    padding: 4px;
    color: rgb(170, 170, 170);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

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

.copyright{
    padding-bottom: 20px;
    background-color: #333;
}

.copyright h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    text-align: center;
    color: #25D366;
    padding: 
    20px;
}
.copyright p{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    font-weight: bold;
    font-size: 16px;
    user-select: none;
    text-align: center;
    padding: 20px;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: start;
    }
    .footer-section {
        text-align: start;
    }
}