:root {
    /* Brand Colors based on Logo & Documents */
    --primary-green: #1B5E3F;      /* Dark Forest Green */
    --secondary-green: #6bab8d;    /* Your original green */
    --accent-green: #4CAF50;       /* Bright Flame Green */
    --text-white: #ffffff;
    --text-off-white: #f0f0f0;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}


body {
    margin: 0;
}

.section-three {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    margin: 0 auto;
    padding: 35px;
    color: white;
    font-family: 'Roboto';
    line-height: 1.2;
}

.container-three {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-three h2 {
    border-bottom: 2px solid white;
    text-align: center;
    width: 300px;
    font-size: 29px;
}

.roles {
    display: flex;
    justify-content: center;
    gap: 37px
}

.roles div {
    text-align: center;
}   

.roles h5 {
    font-size: 22px;
    margin: 28px;
}

p.title {
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 19px;
}

p.job-description {
    font-size: 17px;
}

a.services-btn {
    display: inline-block;
    background-color: #3f4347;
    color: white;
    border-radius: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    padding: 12px;
    transition: background 0.3s ease;
    width: 240px;
    text-align: center;
    margin-top: 36px;
}

.services-btn:hover {
  background-color: #6bab8d;
}

@media (max-width: 1008px){
    a.services-btn {
        font-size: 16px;
        margin-bottom: -3px;
        height: 41px;
    }
    
}

@media (max-width: 824px){
    .roles {
        display: flex;
        justify-content: center;
        gap: 37px;
        flex-direction: column;
    }

    .container-three h2 {
        border-bottom: 2px solid white;
        text-align: center;
        width: 261px;
        font-size: 24px;
    }

    .roles h5 {
        font-size: 22px;
        margin: 6px;
        margin-top: 25px;
    }
}

@media (max-width: 818px){
    .roles {
        display: flex;
        justify-content: center;
        gap: 37px;
        flex-direction: column;
    }
}

@media (max-width: 730px){
    .container-three h2 {
        border-bottom: 2px solid white;
        text-align: center;
        width: 212px;
        font-size: 21px;
    }

    .roles h5 {
        font-size: 19px;
        margin: 3px;
        margin-top: 20px;
    }

    p.title {
        font-size: 17px;
        font-weight: bold;
        font-style: italic;
        margin-bottom: 9px;
    }

    p.job-description {
        font-size: 1rem;
    }

}
@media (max-width: 363px) {
    .container-three h2 {
        border-bottom: 2px solid white;
        text-align: center;
        width: 233px;
        font-size: 22px;
    }

    .roles h5 {
        font-size: 18px;
        margin: 5px;
    }

    p.title {
        font-size: 14px;
        font-weight: bold;
        font-style: italic;
    }

    p.job-description {
        font-size: 14px;
    }
}