footer {
    background-color: #2c2c2c;
    color: #d3d3d3;
    width: 100%;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footersection h4 {
    margin-bottom: 15px;
    color: #fff;
    margin-left: 25px;
}

.footersection ul {
    text-align: center;
    list-style: none;
    padding: 0;
}

.footersection ul li {
    margin-bottom: 10px;
}

.footersection ul li a {
    color: #d3d3d3;
    text-decoration: none;
}

.footersection ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.social {
    margin-top: 20px;
}

.social img {
    margin: 0 10px;
    transition: transform 0.3s, background-color 0.3s;
    border-radius: 50%;
    padding: 10px;
}

.social img:hover {
    background-color: #3a3a3a;
    transform: scale(1.1);
}