/* Footer Styling */
footer {
    background: #222;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.footer-logo h2 {
    color: #ff9800;
    margin-bottom: 10px;
}

.footer-links, .footer-contact, .footer-social {
    margin: 10px 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: #ff9800;
    text-decoration: none;
}

.footer-contact a {
    color: #ff9800;
    text-decoration: none;
}

.footer-social img {
    width: 30px;
    margin: 5px;
    transition: 0.3s;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    background: #111;
    padding: 10px;
    font-size: 14px;
}
