/* Footer Styles */
footer {
    background: #401f8e;
    color: white;
    padding: 30px 20px 15px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 20px;
    grid-auto-flow: row;
}

.footer-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.footer-column h3 {
    font-size: 0.85em;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75em;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75em;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75em;
    margin: 0;
}
