* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* HERO */
.about-hero {
    background: #0d6c26;   /* Same dark green as footer */
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}


.about-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
}

/* GENERAL SECTIONS */
.about-section {
    padding: 60px 20px;
}

.light-bg {
    background: #f7f9fb;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.about-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #0d6c26;
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* FEATURES */
.features {
    list-style: none;
    margin-top: 20px;
}

.features li {
    font-size: 16px;
    margin-bottom: 12px;
}

/* COMMITMENT */
.commitment {
    background: #0d6c26;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.commitment h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.commitment p {
    max-width: 700px;
    margin: 0 auto 25px;
}

.btn {
    background: #fff;
    color: #0d6c26;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    background: #e6f4ea;
}
