.choice {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px;
    margin-top: 180px;

    .rectangle-content {
        padding: 48px;
        max-width: 560px;
        text-align: center;
        background-color: #ebebeb;

        .choice-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;

            h1 {
                font-size: 24px;
                margin: 0;
            }
        }

        .choice-description {
            color: #000000;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .choice-buttons {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 16px;

            button {
                font-weight: 600;
                /* background-color: rgb(214, 235, 255); */
            }
        }
    }
}