: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;
}