    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Segoe UI", Arial, sans-serif;
        background: #f5f7fa;
        color: #222;
        line-height: 1.6;
    }

    img {
        display: block;
        max-width: 100%;
    }

    a {
        text-decoration: none;
    }
	a.maillink {
		color: #fff;
		text-decoration: underline;
	}
	a.folielink {
		color: #fff;
		text-decoration: none;
	}

    .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
    }

    header {
        background: #273746;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0,0,0,.15);
    }

    .navbar {
        height: 75px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        color: white;
        font-size: 34px;
        font-weight: 700;
    }

    .logo span {
        color: #3498db;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 35px;
    }

    nav a {
        color: white;
    }

    .btn-contact {
        background: #0d6efd;
        padding: 12px 22px;
        border-radius: 8px;
    }

    .hero {
        background: #273746;
        overflow: hidden;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
    }

    .hero-text {
        color: white;
    }

    .hero-text h1 {
        font-size: 5rem;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1.8rem;
        color: #d8dde3;
    }

    .hero-button {
        display: inline-block;
        margin-top: 35px;
        padding: 18px 36px;
        background: #0d6efd;
        color: white;
        border-radius: 10px;
    }

    .services {
        padding: 80px 0;
        background: white;
    }

    .services h2,
    .about h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 3rem;
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 30px;
    }

    .card {
        text-align: center;
    }

    .card img {
        border-radius: 18px;
    }

    .card h3 {
        margin: 20px 0 10px;
        font-size: 1.8rem;
    }

    .card p {
        color: #666;
    }

    .about {
        padding: 80px 0;
        background: #e2e8f0;
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 30px;
        text-align: center;
    }

    .about-box {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 3px 12px rgba(0,0,0,.08);
    }

    .contact {
        background: #273746;
        color: white;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 420px 1fr;
    }

    .contact-left {
        padding-top: 60px;
		padding-bottom: 60px;
		padding-right: 60px;
		padding-left: 0px;
    }

    .contact-left h2 {
        margin-bottom: 25px;
        font-size: 3rem;
    }

    .contact-left p {
        margin-bottom: 30px;
        color: #d6dde4;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 14px;
        border: none;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .contact-form button {
        background: #0d6efd;
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        cursor: pointer;
    }

    .contact-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	.kvitt {
		color: #FFDF20 !important;
		font-weight: bold;
	}

    footer {
        background: #1f2d3a;
        color: #ddd;
        text-align: center;
        padding: 25px;
    }
	.minifooter {
		font-size:9pt;
	}
    @media (max-width: 900px) {

        .navbar {
            height: auto;
            flex-direction: column;
            padding: 20px 0;
            gap: 20px;
        }

        nav ul {
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-grid,
        .contact-grid,
        .cards,
        .about-grid {
            grid-template-columns: 1fr;
        }

        .hero-text {
            text-align: center;
            padding: 50px 0;
        }

        .hero-text h1 {
            font-size: 3rem;
        }

        .hero-text p {
            font-size: 1.3rem;
        }

        .contact-left {
            padding: 40px 25px;
        }
    }
