/* Sticky footer layout */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Footer */
footer {
    background: #0d2340;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit,
            minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section .media-icons {
    height: 32px;
    width: 32px;
    margin: 8px;
}

.footer-section h4 {
    color: #FF8000;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section button {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    background-color: transparent;
    border: none;
    font-size: 20px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF8000;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #2c5f8d;
}

.footer-social-icons {
    margin-top: 15px;
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-section h4 {
        font-size: 15px;
    }

    .footer-section a,
    .footer-section p {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}