﻿:root {
    --brand-green: #06402B;
    --brand-gold: #DEBE74;
    --text: #2B2B2B;
    --muted: #6c757d;
    --card: #ffffff;
    --bg: #f7f8f7;
    --shadow: 0 6px 18px rgba(0,0,0,.08);
}

.about-section {
    background: var(--bg);
}

.about-title {
    color: var(--brand-green);
    font-weight: 800;
    letter-spacing: .2px;
}

.about-subtitle {
    max-width: 760px;
    margin: 10px auto 0;
    color: var(--muted);
}

/* Cards / blocks */
.about-card {
    background: var(--card);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    color: var(--text)
}

    .about-list li {
        background: var(--card);
        border-radius: 12px;
        padding: 12px 14px;
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .about-list i {
        color: var(--brand-green);
        width: 22px;
        text-align: center;
    }

/* Section headings */
.section-heading {
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: .25rem;
}

/* Service cards */
.service-card {
    background: var(--card);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 20px;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,.12);
    }

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.bg-green {
    background: var(--brand-green);
}

.bg-gold {
    background: var(--brand-gold);
}

.bg-dark {
    background: #333;
}

.dark-text {
    color: #1e1e1e !important;
}

.service-title {
    margin: 4px 0 6px;
    color: #1f2937;
    font-weight: 700;
}

.service-text {
    color: #4b5563;
    margin: 0;
}

/* How it works */
.hiw-list {
    padding-left: 18px;
}

    .hiw-list li {
        margin: 8px 0;
        color: #3b3b3b;
    }

.btn-cta {
    background: var(--brand-green);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(6,64,43,.25);
    }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.stat-card {
    background: var(--card);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px;
    text-align: center;
}

.stat-value {
    font-weight: 800;
    font-size: 28px;
    color: var(--brand-green);
}

.stat-label {
    color: var(--muted);
    font-size: 14px;
}

/* Responsive tweaks */
@media (max-width:992px) {
    .about-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
