.about-text {
    margin-bottom: 48px;
}
/* Dekorationsbilder på kundsidan */
.kund-img {
    position: absolute;
    z-index: 20;
    pointer-events: none;
}
.kund-img-round {
    left: 6vw;
    top: 570px;
}
.kund-img-round img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 4px solid #1a3a2a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.kund-img-square {
    left: 78vw;
    top: 1350px;
}
.kund-img-square img {
    width: 300px;
        .kund-img,
        .kund-img-round,
        .kund-img-square,
        .kund-img-triangle,
        .kund-img-pentagon {
            display: none !important;
        }
    height: 600px;
    border-radius: 12px;
    border: 4px solid #1a3a2a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.kund-img-triangle {
    left: 4vw;
    top: 1200px;
}
.kund-img-triangle svg {
    width: 300px;
    height: 300px;
    display: block;
}
.kund-img-triangle svg,
.kund-img-triangle image {
    width: 150%;
    height: 120%;
}
.kund-img-pentagon {
    left: 75vw;
    top: 680px;
}
.kund-img-pentagon svg {
    width: 400px;
    height: 400px;
    display: block;
}
@media (max-width: 900px) {
    .kund-img,
    .kund-img-round,
    .kund-img-square,
    .kund-img-triangle,
    .kund-img-pentagon {
        display: none !important;
    }
}
.kundinfo {
    margin-bottom: 48px;
}
/* Smalare textyta och tydligare struktur för kundinfo */
.kundinfo-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 36px 28px 56px 28px;
}
.kundinfo-intro {
    font-size: 1.15rem;
    margin-bottom: 1.5em;
    text-align: center;
}
.kundinfo-block {
    margin-bottom: 2.2em;
}
.kundinfo-block h3 {
    color: #1a3a2a;
    font-size: 1.35rem;
    margin-bottom: 0.2em;
    margin-top: 1.2em;
}
.kundinfo-block h4 {
    color: #226b3a;
    font-size: 1.08rem;
    margin-bottom: 0.5em;
    margin-top: 0.2em;
    font-weight: 600;
}
.kundinfo-block ul {
    margin-left: 1.2em;
    margin-bottom: 0.8em;
}
.kundinfo-block li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}
@media (max-width: 700px) {
    .kundinfo-content {
        padding: 18px 6vw 18px 6vw;
    }
}
    header {
        position: sticky;
        top: 0;
        z-index: 100;
    }
/* Fristående bilder på kontakt.html */
.kontakt-img {
    position: absolute;
    z-index: 20;
    pointer-events: none;
}
.kontakt-img-round {
    left: 10vw;
    top: 550px;
}
.kontakt-img-round img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid #1a3a2a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.kontakt-img-square {
    left: 75vw;
    top: 750px;
}
.kontakt-img-square img {
    width: 300px;
    height: 500px;
    border-radius: 12px;
    border: 4px solid #1a3a2a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.kontakt-img-triangle {
    left: 8vw;
    top: 1100px;
}
.kontakt-img-triangle svg {
    width: 400px;
    height: 380px;
    display: block;
}
@media (max-width: 900px) {
    .kontakt-img,
    .kontakt-img-round,
    .kontakt-img-square,
    .kontakt-img-triangle {
        display: none !important;
    }
}
/* Login-formulär för anställda */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 28px 22px 22px 22px;
}
.login-form label {
    font-weight: 500;
    color: #1a3a2a;
    margin-bottom: 2px;
}
.login-form input {
    padding: 8px 10px;
    border: 1.5px solid #bbb;
    border-radius: 7px;
    font-size: 1rem;
    font-family: inherit;
    background: #f7f7f7;
    transition: border 0.2s;
}
.login-form input:focus {
    border: 1.5px solid #1a3a2a;
    outline: none;
}
.login-form button {
    margin-top: 8px;
    padding: 10px 0;
    background: #1a3a2a;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.login-form button:hover {
    background: #145022;
}
/* Rubrik för kontaktformulär på kontaktsidan */
.contact-form-title {
    font-size: 2.4rem;
    color: #1a3a2a;
    text-align: center;
    margin-top: 40px;
    font-weight: bold;
}
/* Kontaktformulär på kontaktsidan */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 28px 22px 22px 22px;
}
.contact-form label {
    font-weight: 500;
    color: #1a3a2a;
    margin-bottom: 2px;
}
.contact-form input,
.contact-form textarea {
    padding: 8px 10px;
    border: 1.5px solid #bbb;
    border-radius: 7px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
    background: #f7f7f7;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #1a3a2a;
    outline: none;
}
.contact-form button {
    margin-top: 8px;
    padding: 10px 0;
    background: #1a3a2a;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.projects-section.container {
    max-width: 760px;
    margin: 40px auto 60px auto;
    padding-left: 0;
    padding-right: 0;
}

.projects-section h2 {
    text-align: center;
    margin-bottom: 32px;
}

.projects-section.container .project-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 24px;
    margin-bottom: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 32px);
}

.projects-section.container .project-content h3 {
    margin: 0 0 6px 0;
    color: #1a3a2a;
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
}

.projects-section.container .project-date {
    margin: 0 0 18px 0;
    color: #226b3a;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.project-slider {
    position: relative;
    margin-bottom: 20px;
}

.project-slider-track {
    position: relative;
    min-height: 340px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #d8e4d8, #f3f0e8);
}

.project-slide {
    display: none;
    margin: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.project-slide.is-active {
    display: block;
}

.project-slide-image {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    cursor: zoom-in;
}

.project-slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 37, 24, 0.75);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.project-slider-button:hover {
    background: rgba(15, 37, 24, 0.92);
}

.project-slider-prev {
    left: 14px;
}

.project-slider-next {
    right: 14px;
}

.project-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.project-slider-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #b7c2b7;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.project-slider-dot.is-active {
    background: #1a3a2a;
    transform: scale(1.15);
}

.project-desc {
    color: #222;
    line-height: 1.7;
    font-size: 1.04rem;
    width: 100%;
}

.projects-empty {
    text-align: center;
    color: #777;
    padding: 24px 0;
}

@media (max-width: 700px) {
    .projects-section.container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .projects-section.container .project-card {
        padding: 18px;
        width: 100%;
    }

    .project-content h3 {
        font-size: 1.45rem;
    }

    .project-slider-track {
        min-height: 240px;
        height: 240px;
    }

    .project-slide-image {
        height: 240px;
    }

    .project-slider-button {
        width: 40px;
        height: 40px;
    }
}
.contact-form button:hover {
    background: #145022;
}
/* Kontaktporträtt på kontaktsidan */
.contact-portraits {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 36px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.contact-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-portrait img {
    width: 110px;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid #1a3a2a;
    margin-bottom: 10px;
}
.contact-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a3a2a;
    margin-bottom: 2px;
}
.contact-role {
    font-size: 1rem;
    color: #555;
}
@media (max-width: 700px) {
    .contact-portraits {
        flex-direction: column;
        gap: 24px;
    }
}
/* Modal för förstoring av personalporträtt */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.modal-content {
    margin: 0 auto;
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    background: #fff;
    object-fit: contain;
}
.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: color 0.2s;
}
.modal-close:hover {
    color: #ffd700;
}
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.modal-nav:hover {
    background: rgba(255,255,255,0.28);
}

.modal-prev {
    left: 28px;
}

.modal-next {
    right: 28px;
}
/* Personalporträtt grid */
.staff {
    background: #f7f7f7;
    padding: 40px 0 40px 0;
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
    max-width: 700px;
    margin: 0 auto;
}
.staff-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 28px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s;
}
.staff-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.staff-card img {
    width: 110px;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid #1a3a2a;
    margin-bottom: 14px;
}
.staff-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a3a2a;
    margin-bottom: 4px;
}
.staff-role {
    font-size: 1rem;
    color: #555;
}
@media (max-width: 700px) {
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
/* Flexlayout och bilder i about-sektionen */
.about-flex {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
/* Absolut positionerade bilder utanför textytan */
.about-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.about-img-round {
    left: 88%;
    top: 68%;
    /* Du kan flytta bilden med t.ex. transform: translate(-120%, -60%) */
}
.about-img-round img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid #1a3a2a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.about-img-square {
    left: 16%;
    top: 35%;
    /* Du kan flytta bilden med t.ex. transform: translate(20%, 0) */
}
.about-img-square img {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    border: 4px solid #1a3a2a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.about-text {
    flex: 1 1 0%;
    z-index: 2;
}
@media (max-width: 900px) {
    .about-img,
    .about-img-round,
    .about-img-square {
        display: none !important;
    }
}
@media (max-width: 600px) {
    .about-flex {
        flex-direction: column;
        gap: 10px;
    }
    .about-text {
        width: 100%;
    }
}
/* Om oss/informationssektion */
.about {
    background: #fff;
    padding: 40px 0 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: relative;
}
.about .container {
    max-width: 800px;
    margin: 0 auto;
}
.about h2 {
    font-size: 2.4rem;
    color: #1a3a2a;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 600;
}
.about p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #222;
    text-align: center;
}
@media (max-width: 600px) {
    .about {
        padding: 25px 0 18px 0;
    }
    .about h2 {
        font-size: 1.3rem;
    }
    .about p {
        font-size: 1rem;
        text-align: left;
    }
}
/* Grundläggande reset och font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: #1a3a2a;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffd700;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero {
    position: relative;
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    overflow: hidden;
}
.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    filter: brightness(0.7);
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero-text p {
    font-size: 1.3rem;
}
.site-footer {
    background: linear-gradient(180deg, #183524 0%, #122a1d 100%);
    color: #f2f5f2;
    margin-top: auto;
    padding: 42px 0 20px;
}

.footer-cta {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-cta p {
    max-width: 640px;
    margin: 0 auto 16px;
    color: #d7e2d9;
}

.footer-cta-link {
    display: inline-block;
    background: #f2c14e;
    color: #1a3a2a;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col h3 {
    margin-bottom: 12px;
    color: #f2c14e;
    font-size: 1.05rem;
    letter-spacing: 0.4px;
}

.footer-col p,
.footer-col a {
    display: block;
    margin-bottom: 9px;
    color: #d7e2d9;
    text-decoration: none;
    font-size: 0.97rem;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 16px;
    text-align: center;
    color: #c9d5ca;
    font-size: 0.92rem;
}

.footer-bottom p {
    margin-bottom: 6px;
}

.footer-bottom a {
    color: #ffffff;
}
/* Responsivitet */
@media (max-width: 900px) {
    .container {
        padding: 0 10px;
    }
    nav ul {
        gap: 18px;
    }
    .logo {
        font-size: 1.4rem;
    }
    .hero-text h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Hamburger-meny */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 36px;
    height: 36px;
    gap: 6px;
    z-index: 20;
}
.burger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.burger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 600px) {
    header .container {
        flex-direction: row;
        align-items: center;
    }
    .burger {
        display: flex;
        margin-left: auto;
        margin-top: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: flex-start;
        background: #1a3a2a;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 20px 0 10px 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        z-index: 10;
        display: none;
    }
    nav ul.nav-active {
        display: flex;
    }
    .hero-text {
        display: none;
    }
    .hero-text h1 {
        font-size: 1.3rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero {
        padding: 0;
        margin: 0;
        min-height: 80px;
    }

    .site-footer {
        padding-top: 30px;
    }

    .footer-cta h2 {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
