footer {
    background: linear-gradient(to bottom, #1e1e1e, #0e0d0d);
    color: #d1d1d1;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.footer_container { 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer_logo_section {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 16px;
}

.footer_website_logo {
    width: 200px;
    margin-bottom: 10px;
}

.footer_links_section,
.footer_contact_section,
.footer_social_section {
    flex: 1;
    padding: 10px;
}

.footer_links_section h4,
.footer_contact_section h4,
.footer_social_section h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer_links_section ul,
.footer_contact_section ul {
    list-style: none;
    padding: 0;
}

.footer_links_section ul li,
.footer_contact_section ul li {
    margin: 5px 0;
}

.footer_links_section a,
.footer_contact_section a {
    font-size: 16px;
    color: #dbdbdb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links_section a:hover,
.footer_contact_section a:hover {
    color: #0011ff;
}

.footer_social_icons {
    display: flex;
    justify-content: center;
}

.footer_social_icon {
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.footer_social_icon img {
    width: 40px;
    height: 40px;
}

.footer_social_icon:hover {
    transform: scale(1.2);
}

.footer_bottom {
    text-align: center;
    margin-top: 20px;
    color: #ffffff;
}

.footer_bottom p {
    margin: 0;
    font-size: 14px;
}
  