.body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.banner-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00424e90;
    height: 250px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    font-family: var(--font-family-3);

}

.info-container {
    width: 100%;
    max-width: 1350px;
    padding: 20px 20px;
}

.info-container h2 {
    margin: 15px 0;
}

.info-container p {
    font-size: 20px;
    color: #282828;
    line-height: 28px;
}

.info-container ul {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    line-height: 22px;
    padding-left: 20px;
}

.info-container ul li {
    margin: 10px 10px;
    color: #282828;
}

.info-container ul li::marker {
    color: var(--color-3);
    font-weight: 600;
    font-size: 20px;
}





