:root {
    --bg-cream: #fdfaf0;
    --brand-lime: #c0ca33; /* The signature green for the main title */
    --stat-orange: #f59e0b; /* The orange for numbers and subheading */
    --text-dark: #2d3748;
    --text-light: #718096;
}

.impact-section {
    background-color: var(--bg-cream);
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styling */
.impact-header {
    margin-bottom: 80px;
}

.brand-title {
    color: var(--brand-lime);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.impact-intro {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.stats-subheading {
    color: var(--stat-orange);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Individual Stat Cards */
.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--stat-orange);
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 30px 20px; }
}

/* ====================================================== TRANSFORMATIVE IMPACT =================  */

:root {
    --bg-cream: #fdfaf0;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --accent-orange: #b45309;
    --badge-bg: #fef3c7;
}

.transformative-impact {
    background-color: var(--bg-cream);
    padding: 20px 20px;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-main-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.section-main-title span {
    color: var(--accent-orange);
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

/* Card Styling */
.impact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.title-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.impact-icon {
    font-size: 1.5rem;
}

.impact-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
}

.impact-badge {
    background-color: var(--badge-bg);
    color: var(--accent-orange);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.impact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Initiatives List */
.key-initiatives h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.key-initiatives ul {
    list-style: none;
    padding: 0;
}

.key-initiatives li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4a5568;
    font-size: 1rem;
}

/* The custom checkmark icon */
.key-initiatives li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ffffff;
    background-color: #000000;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .impact-card { padding: 30px 20px; }
    .card-header { flex-direction: column; align-items: flex-start; }
}

/* ================================================== STRATEGIC INITIATIVES & FUTURE VISION =================  */

:root {
    --bg-cream: #fdfaf0;
    --text-dark: #333;
    --lime-brand: #c0ca33;
}

.strategic-initiatives {
    background-color: var(--bg-cream);
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.container-initiatives {
    max-width: 900px;
    margin: 0 auto;
}

/* Initiative Boxes Common Styles */
.initiative-box {
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.initiative-box h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.initiative-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.box-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Color Variations */
.pink-box { background-color: #fff1f2; border-color: #fecdd3; color: #9d174d; }
.blue-box { background-color: #f0f9ff; border-color: #bae6fd; color: #075985; }
.gold-box { background-color: #fffbeb; border-color: #fde68a; color: #92400e; }

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.9rem;
    font-weight: 500;
}

.checklist-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist-grid span::before {
    color: #10b981; /* Green check color */
}

/* Final CTA Styling */
.final-cta {
    text-align: center;
    margin-top: 80px;
}

.cta-title {
    color: var(--lime-brand);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Buttons */
.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main, .btn-alt {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-main {
    background-color: var(--lime-brand);
    color: white;
    box-shadow: 0 4px 15px rgba(192, 202, 51, 0.3);
}

.btn-alt {
    background-color: white;
    color: #555;
    border: 1px solid #ddd;
}

.btn-main:hover { transform: translateY(-3px); opacity: 0.9; }
.btn-alt:hover { background-color: #f9f9f9; }

/* Responsive */
@media (max-width: 768px) {
    .btn-container { flex-direction: column; }
    .cta-title { font-size: 2rem; }
    .initiative-box { padding: 25px 15px; }
}