.Why-To-Visit {
    padding-block: 5%;
    overflow: hidden;
    background-color: #DEDEF0;

    .container {
        max-width: 1060px;
    }

    h2 {
        font-size: clamp(1.5625rem, 1.3352rem + 1.1364vw, 2.1875rem);
        font-weight: 600;
        text-align: center;
        /* text-wrap: balance; */
    }

    ul {
        place-content: center;
        height: 100%;

        margin-top: 20px;

        li {
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-family: "Poppins", Sans-serif;
            font-size: 16px;
            font-weight: 400;

            span {
                flex-shrink: 0;
                color: var(--secondry-color);
            }
        }
    }
}