.footer {
    background: #f5f5f5;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #333;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-section {
    min-width: 200px;
    line-height: 1.4;
}

.footer-section h4 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: bold;
}

.footer-section a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Mobilvennlig layout */
@media (max-width: 700px) {
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
