.footer {
    position: relative;
    background: rgba(17, 24, 39, 0.8);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
    color: #e5e7eb;
    z-index: 3;
    border-radius: 14px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 24px;
}

.footer-section {
    min-width: 260px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section h4 {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: bold;
}

.footer-section a {
    text-decoration: none;
    color: #bfdbfe;
    cursor: pointer;
    width: fit-content;
}

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

/* Mobilvennlig layout */
@media (max-width: 700px) {
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}