/* i3 Footer Main Component Styles */
.i3-footer {
    background-color: #000e2f;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.i3-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.i3-footer-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.i3-footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.i3-footer-links a:hover {
    color: #4db3ff;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .i3-footer {
        padding: 1.5rem 0;
        margin-top: 3rem;
    }

    .i3-footer-content {
        gap: 1rem;
    }

    .i3-footer-links {
        gap: 1rem;
        flex-direction: column;
    }
}
