/* Footer Styling */
footer {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: left;
    margin-top: 15px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10px;
}

.footer-section {
    max-width: 250px;
    margin-bottom: 15px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.footer-section p {
    font-size: 14px;
}

.footer-section a img {
    width: 24px;
    height: 24px;
    margin: 5px;
    transition: 0.3s;
}

.footer-section a img:hover {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center; 
    background: #1a252f;
    padding: 10px;
    font-size: 14px;
    margin-top: 10px;
}