p {
    display: block;
    width: 60%;
    margin: 20px auto;
    font-family: var(--font-text);
    font-size: 26px;
    text-align: justify;
    line-height: 2;
}


section {
    padding: 40px 100px;
}
section.blue {
    background-color: var(--primary-light);
    color: var(--text-light);
}


/* waves */
.wave {
    width: 100%;
    margin: -50px 0;
}


/* intro section */
section {
    display: flex;
    flex-direction: column;
}
section.center {
    align-items: center;
}
section.left {
    align-items: flex-start;
}
section.right {
    align-items: flex-end;
}
section.intro h1 {
    font-size: 55px;
}
section.intro p {
    margin: 60px auto;
}



/* bulleted sections */
.iconed-subtitle {
    display: flex;
    flex-flow: row nowrap;
    justify-content: left;
    align-items: center;
}
.iconed-subtitle img {
    width: 70px;
    margin-right: 40px;
}
.iconed-subtitle h2 {
    font-size: 60px;
    font-weight: normal;
    color: var(--accent);
}
section ul li {
    list-style: none;
    margin: 30px 0;
    background-color: var(--accent-light);
    width: fit-content;
    padding: 10px 20px;
    font-size: 24px;
}


/* vision section */
.iconed-subtitle.blue h2 {
    color: var(--primary);
}
section ul.blue li {
    background-color: var(--primary-light);
}


/* slogan sentence */
#slogan {
    font-size: 60px;
    color: var(--accent-light);
    padding: 40px;
    line-height: 1.5;
}
#slogan span {
    display: block;
    color: var(--accent);
}


/* team section */
.center p {
    text-align: center;
    text-wrap: balance;
}
#team-members {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    margin-top: 50px;
    gap: 40px;
}
.team-member {
    max-width: 550px;
}