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

.footer{
    background:#34495e;
    color:white;
}

/* Layout */
.footer-content {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

/* Title */
.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: var(--accent);
}

/* Text */
.footer-col p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* List */
.footer-col ul {
    list-style: none;
}

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

/* Link */
.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* Bottom */
.footer-bottom {
    background: #1a252f;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px){
    .footer-content{
        flex-direction: column;
    }
}