/* Generell Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    border-bottom: #0779e4 3px solid;
}

header .logo {
    width: 30%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

/* Hovedinnhold */
main {
    padding: 20px 0;
}

section {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.intro, .method {
    display: flex;
    align-items: center;
    gap: 30px;
}

.intro .text-content, .method .text-content {
    flex: 2;
}

.image-placeholder-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: #e0e0e0;
    border: 2px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #777;
    border-radius: 8px;
}

h2 {
    color: #0779e4;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #f9f9f9;
    margin-bottom: 10px;
    padding: 10px;
    border-left: 5px solid #0779e4;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}

/* Responsivt Design */
@media(max-width: 768px) {
    .container {
        width: 90%;
    }

    .intro, .method {
        flex-direction: column;
    }

    .image-placeholder {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
}

/* Kontakt Seksjon */
.contact {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.contact h2 {
    color: #0779e4;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact a {
    color: #0779e4;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}
