/* ABOUT */
.about {
    padding: 72px 20px 88px;
}

.about__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.about__header {
    margin-bottom: 28px;
}

.about__title {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    color: #1b1f23;
}

/* Green underline/highlight behind title (like screenshot) */
.about__titleText {
    position: relative;
    display: inline-block;
    padding: 0 6px;
}

.about__titleText::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;         /* tweak underline vertical position */
    width: 78%;          /* underline length relative to title word */
    height: 10px;        /* underline thickness */
    background: #b8f26a; /* light green */
    z-index: -1;
    border-radius: 2px;
}

/* Rich text */
.about__text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: #222;
    text-align: center;
}

.about__text p {
    margin: 0;
}

/* Only add space BETWEEN paragraphs */
.about__text p + p {
    margin-top: 12px; /* adjust to taste: 10–16px works well */
}


.about__text p:last-child {
    margin-bottom: 0;
}

/* Optional: slightly larger gap between paragraph groups */
.about__text p + p {
    margin-top: 18px;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .about {
        padding: 56px 16px 64px;
    }

    .about__text {
        font-size: 15px;
        line-height: 1.85;
    }

    .about__titleText::after {
        bottom: 5px;
        height: 9px;
        width: 84%;
    }
}
