/* Footer */
.footer {
    background-color: #fb8c00;
    color: white;
    padding: 40px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.logo-footer img {
    max-width: 80px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* .welcome-message {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
} */

.footer-section i {
    margin-right: 8px;
}