.CatchContainer {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    text-align: center;

    .SubTitle {
        font-size: 18px;
        font-weight: bold;
        color: #333;
    }

    .Title {
        font-size: 24px;
        font-weight: bold;
        color: #ff6600;
        margin-bottom: 30px;
    }

    .SubContent {
        font-size: 15px;
        color: #666;

        .Point1 {
            font-size: 1em;
            color: var(--Blue11);
        }
        .Point2 {
            font-size: 1.2em;
            color: var(--Blue14);
        }
    }

    .Content {
        font-size: 14px;
        line-height: 1.6;
        color: #333;
    }
}


.DiagButtonsContainer {
    display: grid;
    gap: 20px;
    padding: 20px;

    width: 100%;
    max-width: 350px;
    margin: auto;

    .Button {
        width: 100%;
        text-align: center;
    }
}