.ContentStyle h1 {
    color: #000;
    font-size: 32px;
    margin: 15px 0;
    font-weight: bold;
}
.ContentStyle h2 {
    color: #ffa900;
    font-size: 28px;
    margin: 15px 0;
    font-weight: bold;
}
.ContentStyle h3 {
    color: #ffa900;
    font-size: 24px;
    margin: 15px 0;
    font-weight: bold;
}
.ContentStyle h4 {
    color: #ffa900;
    font-size: 20px;
    margin: 15px 0;
    font-weight: bold;
}
.ContentStyle h5 {
    color: #ffa900;
    font-size: 18px;
    margin: 15px 0;
    font-weight: bold;
}
.ContentStyle h6 {
    color: #ffa900;
    font-size: 16px;
    margin: 15px 0;
    font-weight: bold;
}
.ContentStyle h2::before,
.ContentStyle h3::before,
.ContentStyle h4::before,
.ContentStyle h5::before,
.ContentStyle h6::before {
    content: "";
    color: #fff;
    background-color: #ffa900;
    padding: 0px 3px;
    margin-right: 10px;
    border-radius: 15px;
}
.ContentStyle p {
    font-size: 15px;
    margin: 15px 0;
}
.ContentStyle pre {
    font-size: 14px;
    margin: 15px 0;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 10px;
}
.ContentStyle blockquote {
    position: relative;
    font-size: 14px;
    margin: 15px 0;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 10px;
}
.ContentStyle blockquote::before {
    font-size: 24px;
    content: "“";
    color: #aaaaaa;
    position: absolute;
    left: 0;
    top: 0;
}
.ContentStyle blockquote::after {
    font-size: 24px;
    content: "”";
    color: #aaaaaa;
    position: absolute;
    right: 0;
    bottom: 0;
}
.ContentStyle blockquote p {
    margin: 0;
}
.ContentStyle ul {
    list-style-type: none;
}
.ContentStyle ul li {
    margin: 10px 0px;
}
.ContentStyle ul li::before {
    content: "◎";
    margin-right: 10px;
}
.ContentStyle ul li ul {
    margin-left: 40px;
}
.ContentStyle ul li ul li::before {
    content: "◉";
    margin-right: 10px;
}
.ContentStyle ul li ul li ul {
    margin-left: 40px;
}
.ContentStyle ul li ul li ul li::before {
    content: "⊛";
    margin-right: 10px;
}
.ContentStyle ol {
    list-style-type: none;
    counter-reset: item;
}
.ContentStyle ol li::before {
    content: counter(item) ".";
    counter-increment: item;
    margin-right: 10px;
}
.ContentStyle ol li ol {
    counter-reset: subitem;
    margin-left: 40px;
}
.ContentStyle ol li ol li::before {
    content: counter(subitem, upper-alpha) ".";
    counter-increment: subitem;
    margin-right: 10px;
}
.ContentStyle ol li ol li ol {
    counter-reset: subsubitem;
    margin-left: 40px;
}
.ContentStyle ol li ol li ol li::before {
    content: counter(subsubitem, lower-alpha) ".";
    counter-increment: subsubitem;
    margin-right: 10px;
}
.ContentStyle img {
    max-width: 100%;
}
.ContentStyle table {
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ddd;
    margin: 15px 0;
    table-layout: fixed;
    word-wrap: break-word;
    overflow: hidden;
}
.ContentStyle table caption {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
}
.ContentStyle table td {
    font-size: 14px;
    padding: 5px;
    border: 1px solid #ddd;
}
.ContentStyle table td:hover {
    background-color: #e9e9e9;
}
@media (max-width: 768px) {
    .ContentStyle img {
        max-width: 100% !important;
    }
    .ContentStyle h1 {
        color: #000;
        font-size: 24px;
        margin: 15px 0;
        font-weight: bold;
    }
    .ContentStyle h2 {
        color: #ffa900;
        font-size: 20px;
        margin: 15px 0;
        font-weight: bold;
    }
    .ContentStyle h3 {
        color: #ffa900;
        font-size: 18px;
        margin: 15px 0;
        font-weight: bold;
    }
    .ContentStyle h4 {
        color: #ffa900;
        font-size: 16px;
        margin: 15px 0;
        font-weight: bold;
    }
    .ContentStyle h5 {
        color: #ffa900;
        font-size: 14px;
        margin: 15px 0;
        font-weight: bold;
    }
    .ContentStyle h6 {
        color: #ffa900;
        font-size: 12px;
        margin: 15px 0;
        font-weight: bold;
    }
}