/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #23A0B4, #9DCFD1);
    color: white;
    padding: 60px 0 25px 0;
}

.footer-container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    transition: 0.3s ease;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
}

/* 
.footer {
    padding: 40px 0 20px 0 !important;
}

.footer-container {
    flex-direction: column !important;
    width: 90% !important;
    gap: 25px !important;
}
 
.footer-section {
    min-width: unset !important;
}
  */