footer {
    background-color: #333; 
    color: white; 
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1; 
    padding: 20px;
    max-width: 250px;
}

.footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #f39c12;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #444;
    color: white;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #f39c12;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #bbb;
}
