.about-section {
    font-family: 'Inter', sans-serif;
    padding: 5rem 2rem;
    background: #f7fbf9;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Image column */
.about-img-block {
    position: relative;
}

.about-img-frame {
    border-radius: 20px;
    overflow: hidden;
    background: #d8ede3;
}

.about-img-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: -1.25rem;
    left: 1.75rem;
    background: #ffffff;
    border: 1px solid #d4e8dc;
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-img-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #5a9e7a;
    flex-shrink: 0;
}

.about-img-badge-text strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a2e24;
    line-height: 1.3;
}

.about-img-badge-text span {
    font-size: 12px;
    color: #6b8c7a;
}

/* Content column */
.about-content {
    padding-top: 0.5rem;
}

.about-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5a9e7a;
    font-weight: 500;
    margin-bottom: 0.85rem;
}

.about-headline {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1a2e24;
    margin-bottom: 1rem;
}

.about-body {
    font-size: 15px;
    line-height: 1.8;
    color: #4a6358;
    margin-bottom: 0.75rem;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.about-stat {
    flex: 1;
    min-width: 80px;
    border-left: 2px solid #a8c9b5;
    padding-left: 1rem;
}

.about-stat-num {
    font-size: 1.75rem;
    font-weight: 500;
    color: #3d7a5e;
    line-height: 1;
}

.about-stat-label {
    font-size: 12px;
    color: #7a9e8a;
    margin-top: 5px;
}

/* Pillars grid */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #d4e8dc;
    border: 1px solid #d4e8dc;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 2rem;
}

.about-pillar {
    background: #ffffff;
    padding: 1.25rem 1rem;
}

.about-pillar-icon {
    font-size: 22px;
    color: #5a9e7a;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.about-pillar-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a2e24;
    margin-bottom: 4px;
}

.about-pillar-desc {
    font-size: 12px;
    color: #7a9e8a;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-frame img {
        height: 260px;
    }

    .about-img-badge {
        left: 1rem;
    }

    .about-headline {
        font-size: 1.6rem;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-top: 1.5rem;
    }
}