.hero {
    padding: 15.5% 0 12.5%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 10px solid var(--tertiaryColor);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
}

.hero .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    max-width: 34rem;
    text-align: center;
    line-height: 108%;
    letter-spacing: -1.65px;
}

.hero p {
    font-size: 1.1rem;
    color: white;
    max-width: 35rem;
    text-align: center;
    line-height: 150%; /* 24px */
    letter-spacing: -0.16px;
}

.intro-image {
    width: 30%;
    height: auto;
}

.intro-content {
    column-count: 2;
    margin-top: 2rem;
    column-gap: 2rem; 
}
.intro-content p {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 1.5rem;
}

.board-intro {
    width: 40%;
}
.board-members-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1rem;
}
.board-members-list li  {
    border-bottom: 1px solid rgba(174, 34, 36, 0.20);
    padding-bottom: 1.25rem;
}
.board-members-list li:last-child {
    border-bottom: none;
}
.board-members-list li strong {
    text-transform: uppercase;
    color: var(--secondaryColor);
    font-weight: bold;
}
.board-members-list li span {
    font-size: 0.85rem;
    font-weight: normal;
    line-height: normal;
    display: block;
    margin-top: 0.25rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 1rem;
}
.features-list li a, .features-list li div {
    display: flex;
    gap: 1rem;
    text-transform: uppercase;
    color: var(--secondaryColor);
    font-weight: bold;
    transition: 0.2s all;
    align-items: center;
}
.features-list li a svg, .features-list li div svg {
    width: 43px;
    height: 24px;
    transition: 0.2s all;
    flex: none;
}
.features-list li a:hover {
    padding-left: 1rem;
}
.features-list li a p {
    flex: auto;
    width: -webkit-fill-available;
}

.partners {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.partners img {
    max-height: 60px;
    opacity: 0.8;
    transition: 0.3s all;
}
.partners img:hover {
    opacity: 1;
}

.team-members {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
}
.team-member {
    gap: 2rem;
    display: flex;
    border-bottom: 1px solid rgba(174, 34, 36, 0.20);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.team-member:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.team-member img {
    height: 15rem;
    width: 15rem;
    object-fit: cover;
    border-radius: 1.5rem;
}
.team-member .team-member-info { 
    display: flex;
    flex-direction: column;
}
.team-member-bio {
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .team-member {
        flex-direction: column;
    }
    .team-member img {
        width: 100%;
        height: auto;
    }
}