body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.section {
    max-width: 900px;
    margin: 100px auto;
    /* more space above & below each section */
    padding: 100px 20px;
    padding-bottom: 200px;
    text-align: center;
}

.section h1 {
    color: #3b5e2b;
    margin-bottom: 20px;
}

#our-impact {
    padding-bottom: 168px
}

#our-story {
    padding-bottom: 175px
}

.section p {
    font-size: 1.2em;
    line-height: 1.6;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #c46828;
    /* your accent color */
    margin: 60px auto;
    /* more space above & below divider */
    border-radius: 2px;
}

/* Example: extra gap class you might want to add */
.extra-gap {
    margin-bottom: 100px;
}


html {
    height: 100%;
    width: 100%;
}


footer {
    color: black;
    margin-top: 200px;
    text-align: center;
    background-color: #f6f6f8
}

.active {
    color: white !important;
}

/* Not Used Now
.card-effect {
    transition: all 0.5s;
}

.card-effect:hover {
    box-shadow: 0 0 5px 0;
    transform: translateX(5px);
}*/


.how-it-works-large {
    padding: 40px 20px;
    background: #f0faf4;
    /* soft eco background */
}

.how-it-works-large h1 {
    font-size: 2.4rem;
    text-align: center;
    color: #2e7d32;
    /* eco green */
    margin-bottom: 40px;
}

.large-step-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    margin: 30px auto;
    max-width: 1000px;
    /* almost full width on big screens */
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.large-step-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4caf50;
    /* green circle */
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.large-step-box h2 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.large-step-box p {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.how-it-works-large h1 {
    padding-top: 80px;
    /* or whatever looks good */
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.scale-hover {
    transition: transform 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.05);
}

.typing {
    font-size: 2.2em;
    color: #c46828;
    border-right: .15em solid #3b5e2b;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 3s steps(30, end) forwards, blink .8s infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

.card {
    max-width: 600px;
    /* cards won't be wider than 500px on large screens */
    margin-left: auto;
    /* center horizontally */
    margin-right: auto;
}

.natural-img {
    width: 100%;
    height: auto;
    /* keeps natural aspect ratio, no stretch */
    display: block;
}

.col {
    margin-bottom: 40px;
    /* or try 50px, 60px for even more gap */
}

.scroll-offset::before {
    content: "";
    display: block;
    height: 100px;
    /* height of navbar */
    margin-top: -100px;
    /* negative same amount to offset */
}