/* =========================
   OM OSS – BAS
========================= */

.about-section {
    padding: 80px 0;
}

.about-text {
    max-width: 760px;
    margin: 0 auto;
}

/* =========================
   RUBRIKER
========================= */

.about-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4e7149;
    margin-top: 48px;
    margin-bottom: 14px;
    position: relative;
}

/* subtil linje under rubrik */
.about-text h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    background: #4e7149;
    margin-top: 10px;
    opacity: 0.35;
}

/* första rubriken ska inte få extra toppmarginal */
.about-text h2:first-of-type {
    margin-top: 0;
}

/* =========================
   BRÖDTEXT
========================= */

.about-text p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 22px;
}

/* =========================
   VARFÖR VÄLJA OSS – LISTA
========================= */

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
    align-items: flex-start;
}

/* check-ikon */
.about-list li::before {
    content: "✔";
    color: #4e7149;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* rubrik i listan */
.about-list strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 600;
    color: #2f4d2d;
    margin-bottom: 4px;
}

/* text i listan */
.about-list p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #444;
}

/* =========================
   LUFT MELLAN SEKTIONER
========================= */

.about-text > *:last-child {
    margin-bottom: 0;
}

/* =========================
   MOBIL
========================= */

@media (max-width: 768px) {

    .about-section {
        padding: 60px 0;
    }

    .about-text {
        padding: 0 14px;
    }

    .about-text h2 {
        font-size: 1.4rem;
        margin-top: 36px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-list li {
        gap: 12px;
    }
}
