/* ==========================
   ABOUT US SECTION
========================== */

.about-section {
    background: linear-gradient(
        135deg,
        #f8fafc 0%,
        #eef7f0 100%
    );
}

.section-badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
}

.about-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(22, 163, 74, 0.08);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        #16a34a,
        #22c55e,
        #84cc16
    );
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 2;
    color: #374151;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-content strong {
    color: #15803d;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {

    .about-card {
        padding: 2rem;
        border-radius: 18px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.8;
        text-align: left;
    }

    .section-title {
        font-size: 2rem;
    }
}