:root {
    --bg-dark-green: #0D261C;
    --bg-darker-green: #081a13;
    --accent-green: #59D668;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #b0c4b8;
    --text-body-dark: #555555;
    --bg-light-section: #f4fcf6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--text-dark);
}

.clip-overflow {
    overflow-x: hidden;
}

.section-padding {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

.section-title {
    font-weight: 800;
    color: #0d261c;
    margin-bottom: 1.5625rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.section-title-center {
    text-align: center;
    margin-bottom: 3.75rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-dark-green);
}

.section-subtitle-center {
    text-align: center;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    display: block;
}

.section-text {
    color: var(--text-body-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.img-placeholder {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 0.9375rem 1.875rem rgba(0,0,0,0.1);
    object-fit: cover;
}

.bg-light-custom {
    background-color: var(--bg-light-section);
}

.bg-white {
    background-color: #ffffff;
}

.custom-shape-divider-bottom-1680 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.custom-shape-divider-bottom-1680 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    min-width: 100%;
    height: 6.25rem;
}

.custom-shape-divider-bottom-1680 .shape-fill {
    fill: #FFFFFF;
}


@media (max-width: 576px){
    .section-title{
        font-size: 2rem;
    }
    .section-title-center{
        font-size: 2rem;
    }
}