#sec-2 .container .benefit {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 2rem;
    box-shadow: 0 0 10px rgb(231, 231, 231);
    padding: 1.5rem;
    gap: 1rem;
}

#sec-2 .container .benefit h2 {
    font-family: "poppins", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--secondary);
}

#sec-2 .container .benefit .content {
    width: 100%;
}

#sec-2 .container .benefit .content ol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    font-family: "open sans", sans-serif;
    font-size: clamp(14px, 2vw, 16px);
}

#sec-2 .container .benefit .content ol li {
    list-style: none;
    margin-left: 3%;
}

#sec-2 .container .benefit p {
    font-family: "open sans", sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 18px);
    display: flex;
    align-items: start;
    gap: 5px;
}

#sec-2 .container .benefit p:before {
    content: "✔";
    color: var(--secondary);
    font-weight: 900;
}
