/* CSS ??????????????? */
.warning-container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border: 3px solid #ff4d4d; /* ??????????? ????? */
    border-radius: 12px;
    background-color: #fffafa; /* ??????????????? */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    font-family: 'Mitr', sans-serif;
    text-align: center;
}

.warning-container:hover {
    transform: translateY(-5px); /* ??????????????????????????????????? */
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.2); /* ??????????????????????? */
    background-color: #ffeff0;
}

.warning-title {
    font-size: 1.8rem;
    font-weight: 700; /* ?????????? */
    color: #cc0000; /* ????????? */
    margin-bottom: 20px;
    text-transform: uppercase; /* ???????????????????????????? */
}

.warning-section {
    border-top: 1px dashed #ff4d4d; /* ????????????????????? */
    padding-top: 20px;
}

.warning-question,
.warning-answer {
    font-size: 1.2rem;
    font-weight: 800; /* ?????????????????????? */
    color: #d9534f; /* ??????????????? */
    margin-bottom: 10px;
}/* CSS Document */

