div.table-of-content-block {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.table-of-content-block h2 {
    color: red;
}

.table-of-content-block ol {
    padding: 0;
    margin-top: 10px;
}

.table-of-content-block li {
    background: #20b2aa;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.colors-dark .entry-content .table-of-content-block a {
    color: white;

}

table.table-slyle {
    width: 100%;
    border-collapse: collapse;
    background: #efefef;
    border-radius: 10px;
    overflow: hidden;
}

table.table-slyle thead {
    background: #20b2aa;
    color: white;
}

table.table-slyle th,
td {
    padding: 10px;
    border: 2px solid #20b2aa;
    text-align: left;
}

table.table-slyle tbody tr {
    color: #2c4447;
}

table.table-slyle tbody tr:nth-child(even) {
    background: #d3edd6;
}

table.table-slyle tbody tr:nth-child(odd) {
    background: #efefef;
}

table.table-slyle td:first-child {
    font-weight: bold;
}

.advantage-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.advantage {
    background: #efefef;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 48%;
    min-width: 300px;
}

.advantage h3 {
    color: #ff2400;
}

.advantage ol {
    list-style-type: none;
    padding: 0;
}

.advantage li {
    background: #20b2aa;
    color: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}