body{
    background-color: #f0dfcc;
}
        
        /* Hide content until loaded */
.content-hidden {
    visibility: hidden;
}
        
.content-visible {
    visibility: visible;
}
:root {
    --primary-green: #2c7a4b;
    --secondary-green: #edf7f1;
    --dark-text: #333;
    --light-text: #666;
    --bg-light: #f9f9f9;
    --border-radius: 12px;
    --container-width: 120rem;
}

h2 {
    font-size: 3.9rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    text-align: center;
}

h3 {
    font-size: 2.2rem;    
    color:#2c5f2d;
    margin-bottom: 1.5rem;
}


section {
    padding: 60px 20px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

    /* Pillars */
.impact-pillars h3 {
    font-size: 2.2rem;
}

.impact-pillars p {
    font-size: 1.6rem;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pillar {
    background: whitesmoke;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-6px);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

    /* Numbers */
.stats-container {
    width: fit-content;
    display: flex;
    flex-direction: row;
   /*grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));*/
    gap: 20px;
    transition: transform 0.3s ease;
    border-radius: 12px;
    margin-top: 30px;
    background-color: whitesmoke;
    padding: 15px 20px;
    justify-self: center;
}

.stats-container:hover{
    transform: translate(-6px);
}
.stat-number {
    font-size: 4rem;
    font-weight: bold;
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
}

    .stat-label {
      color: #2D2D2D;
      font-size: 1.6rem;
      text-align: center;
    }

    /* Reach */

    .reach h2{
        font-size: 3.9rem;
    }

    .reach p{
        font-size: 1.6rem;
        text-align: justify;
    }

    .reach-text p:nth-child(2){
        font-size: 1.6rem;
        text-align: left;
        font-weight: 700;
        text-decoration: none
    }

    .reach-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
    }

.reach-text, .reach-map {
      flex: 1;
      min-width: 28rem;
}

        /* Stories */
    .stories-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .story {
      background: var(--bg-light);
      padding: 20px;
      border-radius: var(--border-radius);
      box-shadow: 0 2px 8px rgba(0,0,0,.05);
    }

.story p{
    font-size: 1.8rem;
    }

    .story-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .story-avatar img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit:scale-down;
    }

    .story-quote {
      font-style: italic;
      color: var(--light-text);
      font-size: 1.6rem;
    }

    /* Commitment */

.commitment h2 {
       font-size: 3.9rem; 
}

.commitment h3 {
       font-size: 2.2rem; 
}

.commitment p {
    font-size: 1.6rem;
    text-align: center; 
}

.commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.commitment-point {
    text-align: center;
    background: var(--secondary-green);
    padding: 20px;
    border-radius: var(--border-radius);
}

.commitment-point i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

    /* CTA */
.cta {
    background: whitesmoke;
    color: #fff;
    text-align: center;
    border-radius: 12px;
}

.cta h2 {
    font-size: 3.9rem;
    color: #1B5E20;
}

.cta p {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #1B5E20;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.cta-btn {
    background: #fff;
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    margin: 0 2px;
    
}

.cta-btn:hover {
    background: #f0f0f0;
    border: 2px solid #FBC02D;
    transform: translate(-5px);
    margin-top: -5px;
}

.index-about-skill p {
    font-weight: 600;
}

.index-about-skill {
    flex-basis: 400px;
}

.index-about-skill-bar {
width: 100%;
height: 20px;
border: 4px solid #20a327;
}

.index-about-skill-bar-fill {
height: 100%;
background-color:yellowgreen;
}

.yl {
    width: 83%;
}

.wh {
    width: 97%;
}

.gr {
    width: 58%;
}

.gy {
    width: 38%;
}


    @media (max-width: 768px) {
      .reach-content {
        flex-direction: column;
      }
    }