:root {
    --headings-font-family: 'Red Hat Text', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headings-font-family);
}

/* promotion */

.promotion {
    border: 2px solid #44be4c;
    background-color: #fff;
    padding: 10px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promotion .promotion-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}


.promotion-image img {
    max-width: 140px;
}


p.promotion-title {
    font-size: 24px;
    color: #44be4c;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--headings-font-family);
}


p.promotion-description {
    font-family: var(--headings-font-family);
    font-size: 20px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}


.promotion-btn {
    padding: 12px 30px;
    font-size: 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--headings-font-family);
}

.promotion-btn a {
    background-color: #44be4c;
}


@media (max-width: 768px) {
    .promotion .promotion-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .promotion-image img {
        width: 100%;
    }

    .promotion-title {
        font-size: 20px;
    }

    .promotion-description {
        font-size: 14px;
    }

    .promotion-btn {
        padding: 10px 20px;
        font-size: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 470px) {
    .promotion-title {
        font-size: 18px;
    }

    .promotion-description {
        font-size: 14px;
    }

    .promotion-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}


.header-buttons-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-button {
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--headings-font-family);
}


.hide-on-mobile {
    display: none;
}

.show-on-mobile {
    display: inline-block;
}

@media (min-width: 768px) {
    .hide-on-mobile {
        display: inline-block;
    }
    .show-on-mobile {
        display: none;
    }
}

/* header buttons */

.header-buttons-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 10px;
}

.header-button {
    padding: 5px 15px;
    background-color: #44be4c;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--headings-font-family);
}

.header-button:hover {
    background-color: #41be49;
}

.header-toggle-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hide-on-mobile {
    display: block;
}

.show-on-mobile {
    display: inline-block;
}
@media screen and (max-width: 992px) {
    header .header-logo {
        text-align: left;
        max-width: 140px;
    }
}
@media (max-width: 768px) {
    .hide-on-mobile {
        display: inline-block;
    }
    .hide-on-mobile {
        display: none;
    }

}
/* popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(41, 78, 50, 0.7);
    text-align: center;
    max-width: 400px;
    box-shadow: 0 4px 10px #44be4c;
    position: relative;
}

.popup-content p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: var(--headings-font-family);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    font-family: var(--headings-font-family);
    color: #fff;
}

.popup-button {
    padding: 5px 15px;
    background-color: #44be4c;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--headings-font-family);
}
.popup-button:hover {
    background: #2abe34;
}

/*table of content*/

div.lwptoc-white .lwptoc_i A{
    color: #1d2730;
    font-size: 20px;
}

div.lwptoc-white .lwptoc_i A:active, div.lwptoc-white .lwptoc_i A:focus, div.lwptoc-white .lwptoc_i A:hover {
    color: #2abe34;
}

div.lwptoc-white .lwptoc_i {
    color: #333;
    background: #fff;
    border: 2px solid #2abe34;
    border-radius: 10px;
    width: 100%;
}

div.lwptoc_item {
    padding: 10px;
}

div.lwptoc-notInherit .lwptoc_i DIV A:hover {
    border-bottom: none!important;
}

b.lwptoc_title {
    font-size: 30px;
}

@media screen and (max-width: 475px) {
    b.lwptoc_title {
        font-size: 25px;
    }
}

/*footer*/

.container .awareness-logos img {
    max-width: 125px;
}

/*faq*/

.horizontal-list-container .horizontal-list {
    padding: 4px 0;
    margin-left: 0;
    display: flex;
    gap: 15px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;

    li {
        list-style: none;

        a {
            background-color: #E0E4EB;
            color: #2D4877;
            padding: 10px 25px;
            transition: color .3s, background-color .3s;
            border-radius: 8px;
            text-decoration: none;

            &:hover {
                background-color: #FEDFDF;
                color: #EC001E;
            }
        }

        &.active-page a {
            color: #EC001E;
            background-color: #FEDFDF;
        }
    }
}

.schema-faq .schema-faq-section {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
}

.schema-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 18px;
  color: #333;
  margin-top: 0.5rem;
}

.schema-faq-section.open .schema-faq-answer {
  max-height: 500px;
}
.schema-faq-question {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  display: block;
  padding-right: 30px;
}

.schema-faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M16.5%208.25L12.4142%2012.3358C11.7475%2013.0025%2011.4142%2013.3358%2011%2013.3358C10.5858%2013.3358%2010.2525%2013.0025%209.58579%2012.3358L5.5%208.25%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.schema-faq-section.open .schema-faq-question::after  {
  transform: translateY(-50%) rotate(180deg);
}

.schema-faq-question {
	    display: block;
    cursor: pointer;
    width: 100%;
}
.schema-faq-section.open strong.schema-faq-question {
	    color: #d63031;
}