.st_wrapper,
.st_wrapper * {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    font-family: 'Poppins', sans-serif;
    /* Example: Resetting to a specific font */
    font-style: initial;
    font-weight: initial;
    color: #000;
    /* Default text color */
    background: transparent;
    /* No background */
    box-sizing: border-box;
    /* Include padding and border in the element's total width and height */
    vertical-align: baseline;
    line-height: 1.5;
    text-decoration: none;
    outline: none;
    letter-spacing: initial;
}

b,
strong {
    font-weight: bolder !important;
}

/* Specific resets for form elements */
.st_wrapper input,
.st_wrapper textarea,
.st_wrapper select,
.st_wrapper button {
    font-family: inherit;
    /* Ensures form elements use the div's font */
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    /* Inherits text color from the div */
}

.st_wrapper a {
    color: inherit;
    /* Link colors are reset to match the div's text color */
    text-decoration: none;
    /* Removes underline from links */
}

/* List styles reset */
.st_wrapper ol {
    list-style: decimal;
    padding-inline-start: 20px;
    /* Removes bullet points and numbers from lists */
}

.st_wrapper ul {
    list-style: disc;
    padding-inline-start: 20px;
}

/* Table styles reset */
.st_wrapper table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Image and video tags */
.st_wrapper img,
.st_wrapper video {
    max-width: 100%;
    /* Ensures media doesn't overflow the div */
}

.st_wrapper p {
    line-height: 1.6;
    /* Example line height for paragraphs */
}

.st_wrapper span {
    font-size: 14px;
}

/* Button reset */
.st_wrapper button {
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}