/* Installasjoner før/etter seksjon */
.installasjoner-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.installasjon {
    text-align: center;
}

.installasjon img {
    width: 350px;
    border-radius: 10px;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f8fb;
    color: #222;
}
header {
    background: #0a3d62;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
header nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}
.hero {
    background: linear-gradient(90deg, #38ef7d 0%, #11998e 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #0a3d62;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.2s;
}
.cta:hover {
    background: #38ef7d;
    color: #0a3d62;
}
section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.product-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.product {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 20px;
    width: 250px;
    text-align: center;
}
.product img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}
input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}
button {
    background: #11998e;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #38ef7d;
    color: #0a3d62;
}

/* Samarbeidspartnere */
.partners {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.partner {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.partner img {
    max-width: 120px;
    max-height: 60px;
    margin-bottom: 10px;
}
footer {
    background: #0a3d62;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
img {
    max-width: 100%;
}
#installasjoner img {
    width: 350px;
    border-radius: 10px;
}
#installasjoner div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: wrap;
}