* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}
header,footer {
    width: 100%;
}
html,
body {
    min-height: 100%;
    height: 100%;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}
.wrapping-containerlocal {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(141,166,110);
}
a {
    color: inherit;
    text-decoration: none;
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.price_palettelocal {
    background: linear-gradient(145deg, rgb(141,166,110) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.price_palettelocal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgb(76,112,66,0.5) 0%, transparent 50%);
    pointer-events: none;
}

.price_palettelocal .container {
    position: relative;
    z-index: 1;
}

.price_palettelocal .price_info_holder {
    text-align: center;
    margin-bottom: 60px;
}

.price_palettelocal .photo {
    width: 100vw;
    height: 400px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.price_palettelocal .photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgb(141,166,110), transparent);
}

.price_palettelocal h2 {
    color: #000000;
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price_palettelocal h3 {
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
}

.price_palettelocal .price_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price_palettelocal .price_item {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price_palettelocal .price_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(76,112,66) 0%, rgb(34,64,47) 100%);
}

.price_palettelocal .price_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.price_palettelocal .price_item h3 {
    color: #000000;
    font-size: 22px;
    margin-bottom: 20px;
}

.price_palettelocal .price_item .price_amount {
    font-size: 40px;
    color: rgb(76,112,66);
    font-weight: 700;
    margin-bottom: 20px;
}

.price_palettelocal .price_item span {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price_palettelocal .price_item .button {
    background: linear-gradient(90deg, rgb(76,112,66) 0%, rgb(34,64,47) 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.price_palettelocal .price_item .button:hover {
    opacity: 0.9;
}

@media (min-width: 768px) {
    .price_palettelocal .price_items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .price_palettelocal .price_items {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .price_palettelocal .price_items:has(.price_item:nth-child(4)) {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price_palettelocal .price_items:has(.price_item:nth-child(4)) .price_item:nth-child(3),
    .price_palettelocal .price_items:has(.price_item:nth-child(4)) .price_item:nth-child(4) {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .price_palettelocal {
        padding-bottom: 80px;
    }
    
    .price_palettelocal .photo {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .price_palettelocal h2 {
        font-size: calc(37px * 0.9);
    }
    
    .price_palettelocal h3 {
        font-size: calc(22px * 0.9);
    }
    
    .price_palettelocal .price_item {
        padding: 30px 20px;
    }
}.title_introlocal .holder {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
}
.title_introlocal .holder:after {
    content: "";
    position: absolute;
    height: 100%;
    background: rgb(76,112,66,0.5);
    right: 0;
    width: 20%;
    clip-path: polygon(100% 50%, 50% 0, 100% 0, 100% 100%, 50% 100%);
}
.title_introlocal .photo {
    width: 100%;
}
.title_introlocal .text_holder {
    display: flex;
    flex-direction: column;
    background: rgb(76,112,66);
    padding: 50px 0;
    color: #ffffff;
    width: 40%;
    flex-shrink: 0;
    padding-left: calc((100% - 1200px)/2);
    padding-right: 30px;
    position: relative;
}

.title_introlocal .text_holder:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    right: calc(-50% + 1px);
    top:0;
    clip-path: polygon(0% 0%, 0 0, 50% 50%, 0 100%, 0% 100%);
    background: rgb(76,112,66);
}
.title_introlocal .text_holder:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    right: calc(-50% + 1px);
    top:0;
    clip-path: polygon(0% 0%, 50% 0, 100% 50%, 50% 100%, 0 100%);
    background: rgb(76,112,66,0.5);
}
.title_introlocal .text_info {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.title_introlocal .text_info svg {
    width: 60px;
    height: 60px;
    fill: #ffffff;
    margin-bottom: 10px;
}
.title_introlocal .text_info .h2 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin: 0 0 3.5rem 0;
}
.title_introlocal .text_info span {
    font-size: 1.2rem;
}
.title_introlocal .text_holder .button {
    padding: 10px 20px;
    background: rgb(34,64,47);
    color: #ffffff;
    text-decoration: none;
    width: fit-content;
    transition: all 0.5s ease-out;
}
.title_introlocal .text_holder .button:hover {
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1200px) {
    .title_introlocal .text_holder {
        padding-left: 20px;
        width: 60%;
    }
}
@media only screen and (max-width: 800px) {
    .title_introlocal .text_holder {
        width: 100%;
    }
    .title_introlocal .holder {
        flex-direction: column;
    }
    .title_introlocal .photo {
        height: 200px;
    }
    .title_introlocal .holder:after {
        height: 200px;
    }
}.course_instructorlocal {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.course_instructorlocal .container {
    position: relative;
    z-index: 1;
}

.course_instructorlocal .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 26px;
}

.course_instructorlocal .photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}

.course_instructorlocal .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course_instructorlocal .worker_description {
    margin-top: 20px;
}

.course_instructorlocal .review .name {
    font-size: 36px;
    font-weight: 700;
    color: rgb(76,112,66);
    margin-bottom: 10px;
}

.course_instructorlocal .review span {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
}

.course_instructorlocal .review .quote {
    font-size: 17px;
    font-style: italic;
    color: #000000;
    margin-top: 20px;
}

.course_instructorlocal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(76,112,66), rgb(34,64,47));
    z-index: -1;
}

@media only screen and (max-width: 1200px) {
    .course_instructorlocal .review {
        padding: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .course_instructorlocal {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .course_instructorlocal .review {
        border-radius: 0;
    }

    .course_instructorlocal .photo {
        width: 150px;
        height: 150px;
        margin-bottom: 10px;
    }
}.appWrapperlocal {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(76,112,66,0.5);
    color: #ffffff;
    height: 100vh;
    padding: 60px;
    text-align: center;
    border-radius: 26px;
    border: 2px solid rgb(76,112,66,0.5);
    box-shadow: 0 0 10px rgb(34,64,47,0.5);
    position: relative;
    overflow: hidden;
}
.appWrapperlocal::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: rgb(76,112,66);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 20px rgb(76,112,66);
    z-index: 1;
}
.appWrapperlocal::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgb(34,64,47);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 30px rgb(34,64,47);
    z-index: 1;
}
.appWrapperlocal .container {
    background-color: rgb(76,112,66,0.5);
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 20px rgb(76,112,66,0.5);
    border: 2px solid rgb(34,64,47,0.5);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.appWrapperlocal .container h2 {
    font-size: 30px;
    font-weight: 700;
    color: rgb(76,112,66);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgb(76,112,66);
    padding-bottom: 10px;
    width: 100%;
    position: relative;
}
.appWrapperlocal .container p {
    font-size: 15px;
    font-weight: 400;
    color: rgb(34,64,47);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid rgb(76,112,66,0.5);
    position: relative;
}
.appWrapperlocal .container p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: rgb(76,112,66);
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(76,112,66);
}
.appWrapperlocal .container p::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: rgb(34,64,47);
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(34,64,47);
}
@media only screen and (max-width: 800px) {
    .appWrapperlocal {
        padding: 30px;
        height: auto;
    }
    .appWrapperlocal .container {
        padding: 30px;
    }
    .appWrapperlocal .container h2 {
        font-size: 46px;
    }
    .appWrapperlocal .container p {
        font-size: 18px;
    }
}
.wrapping-containerlocal .our_backgroundlocal {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 8px solid rgb(76,112,66);
    border-bottom: 8px solid rgb(34,64,47);
}

.wrapping-containerlocal .our_backgroundlocal .holder {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.wrapping-containerlocal .our_backgroundlocal .caption_holder {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: rgb(141,166,110);
    border-radius: 27px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.wrapping-containerlocal .our_backgroundlocal .photo {
    width: 45%;
    height: auto;
    min-height: 500px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.wrapping-containerlocal .our_backgroundlocal .photo::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 10px solid rgb(76,112,66,0.5);
    border-radius: 10px;
    z-index: 0;
}

.wrapping-containerlocal .our_backgroundlocal .photo::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 10px solid rgb(34,64,47,0.5);
    border-radius: 10px;
    z-index: 0;
}

.wrapping-containerlocal .our_backgroundlocal .style_element {
    width: 55%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.wrapping-containerlocal .our_backgroundlocal h2 {
    font-size: 41px;
    font-family: Ubuntu, sans-serif;
    color: rgb(76,112,66);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 5px solid rgb(34,64,47);
}

.wrapping-containerlocal .our_backgroundlocal h2::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: rgb(76,112,66);
}

.wrapping-containerlocal .our_backgroundlocal p {
    font-size: 18px;
    font-family: Ubuntu, sans-serif;
    color: #000000;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 800px) {
    .wrapping-containerlocal .our_backgroundlocal {
        padding: 20px 0;
    }
    .wrapping-containerlocal .our_backgroundlocal .holder {
        flex-direction: column;
        padding: 0;
    }
    .wrapping-containerlocal .our_backgroundlocal .caption_holder {
        flex-direction: column;
        padding: 10px;
    }
    .wrapping-containerlocal .our_backgroundlocal .photo {
        width: 100%;
        min-height: 300px;
    }
    .wrapping-containerlocal .our_backgroundlocal .style_element {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .wrapping-containerlocal .our_backgroundlocal h2 {
        font-size: 23px;
    }
    .wrapping-containerlocal .our_backgroundlocal p {
        font-size: 17px;
    }
}

.advantages_highlightslocal .advantages_content h2 {
    color: rgb(34,64,47);
}

.advantages_highlightslocal .advantage_item svg, .advantages_highlightslocal .advantage_item svg path {
    fill: rgb(76,112,66);
}

.advantages_highlightslocal .advantage_item p {
    color: #000000;
}

.advantages_highlightslocal .advantage_item b {
    color: rgb(76,112,66);
}

.advantages_highlightslocal {
    padding-top: 80px;
    padding-bottom: 80px;
}

.advantages_highlightslocal .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.advantages_highlightslocal .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.advantages_highlightslocal .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
    font-weight: 600;
}

.advantages_highlightslocal .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.advantages_highlightslocal .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.advantages_highlightslocal .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.advantages_highlightslocal .advantage_item svg, .advantages_highlightslocal .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapping-containerlocal .advantages_highlightslocal .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .advantages_highlightslocal .advantages_content h2 {
        font-size: 30px;
    }

    .advantages_highlightslocal .advantages_holder {
        flex-direction: column;
    }

    .advantages_highlightslocal {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapping-containerlocal .advantages_highlightslocal .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapping-containerlocal .advantages_highlightslocal {
    background: linear-gradient(135deg, rgb(76,112,66) 0%, rgb(34,64,47) 100%);
    padding: 100px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.wrapping-containerlocal .advantages_highlightslocal .advantages_content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.wrapping-containerlocal .advantages_highlightslocal .advantages_description {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease;
}

.wrapping-containerlocal .advantages_highlightslocal .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.wrapping-containerlocal .advantages_highlightslocal .advantage_item {
    background: #ffffff;
    padding: 30px;
    flex: 1 1 calc(33.333% - 20px);
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapping-containerlocal .advantages_highlightslocal .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.wrapping-containerlocal .advantages_highlightslocal .advantage_image img,
.wrapping-containerlocal .advantages_highlightslocal .advantage_image svg {
    width: 80px;
    height: 80px;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.wrapping-containerlocal .advantages_highlightslocal .advantage_item:hover .advantage_image img,
.wrapping-containerlocal .advantages_highlightslocal .advantage_item:hover .advantage_image svg {
    transform: scale(1.1);
}

.wrapping-containerlocal .advantages_highlightslocal .advantages_content h4 {
    font-size: 21px;
    font-weight: 600;
    color: rgb(76,112,66);
    margin-top: 20px;
    transition: color 0.3s ease;
}

.wrapping-containerlocal .advantages_highlightslocal .advantage_item p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.wrapping-containerlocal .advantages_highlightslocal .advantage_item p b {
    color: rgb(76,112,66);
}

@media only screen and (max-width: 1200px) {
    .wrapping-containerlocal .advantages_highlightslocal .advantages_holder .advantage_item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media only screen and (max-width: 800px) {
    .wrapping-containerlocal .advantages_highlightslocal .advantage_item {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .wrapping-containerlocal .advantages_highlightslocal .advantages_content h2 {
        font-size: 21px;
    }

    .wrapping-containerlocal .advantages_highlightslocal {
        padding: 50px 20px;
    }
}.customer_feedbacklocal {
    background: linear-gradient(135deg, #000000, rgb(34,64,47));
    padding: 100px 5vw;
    position: relative;
    overflow: hidden;
}

.customer_feedbacklocal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(76,112,66,0.5) 10%, transparent 10%);
    background-size: 50px 50px;
    transform: rotate(30deg);
    opacity: 0.1;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: rotate(30deg) translateY(0); }
    100% { transform: rotate(30deg) translateY(-50px); }
}

.customer_feedbacklocal .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.customer_feedbacklocal h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.customer_feedbacklocal h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgb(76,112,66);
    border-radius: 2px;
}

.customer_feedbacklocal .reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.customer_feedbacklocal .reviews:has(.review:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.customer_feedbacklocal .review {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.customer_feedbacklocal .review:hover {
    transform: rotateY(5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.customer_feedbacklocal .photo {
    height: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.customer_feedbacklocal .photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.customer_feedbacklocal .text {
    padding: 30px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customer_feedbacklocal .text::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 100px;
    color: rgb(76,112,66);
    opacity: 0.2;
    font-family: Ubuntu, sans-serif;
}

.customer_feedbacklocal .text p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.customer_feedbacklocal .text span {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #000000;
    display: block;
}

.customer_feedbacklocal .review::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, rgb(76,112,66), rgb(34,64,47));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.customer_feedbacklocal .review:hover::after {
    transform: scaleX(1);
}

@media (max-width: 1200px) {
    .customer_feedbacklocal .reviews {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .customer_feedbacklocal .reviews:has(.review:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .customer_feedbacklocal {
        padding: 80px 5vw;
    }

    .customer_feedbacklocal h3 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .customer_feedbacklocal .reviews,
    .customer_feedbacklocal .reviews:has(.review:nth-child(4):last-child) {
        grid-template-columns: 1fr;
    }

    .customer_feedbacklocal .review:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .customer_feedbacklocal {
        padding: 60px 5vw;
    }

    .customer_feedbacklocal h3 {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .customer_feedbacklocal .text {
        padding: 20px;
    }
}.give_it_a_trylocal {
    padding: 10vh 0;
    background: linear-gradient(135deg, rgb(141,166,110), rgb(76,112,66,0.5) 75%);
    color: #000000;
    font-family: Ubuntu, sans-serif;
    position: relative;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.give_it_a_trylocal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent);
    z-index: 0;
}

.give_it_a_trylocal .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4vh;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.give_it_a_trylocal .holder {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3vw;
    padding: 5vh 4vw;
    background: linear-gradient(145deg, #ffffff, rgb(141,166,110));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.give_it_a_trylocal .holder svg {
    fill: rgb(76,112,66);
    width: 10vw;
    height: auto;
    max-width: 100px;
}

.give_it_a_trylocal .holder svg path {
  fill: rgb(76,112,66);
}

.give_it_a_trylocal .holder h2 {
    font-size: 32px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.give_it_a_trylocal .holder .button {
    padding: 1.5vh 3vw;
    background: rgb(76,112,66);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    display: inline-block;
}

@media only screen and (max-width: 1024px) {
    .give_it_a_trylocal .container {
        grid-template-columns: 1fr;
        width: 95%;
    }

    .give_it_a_trylocal .holder {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 3vh;
    }

    .give_it_a_trylocal .holder svg {
        width: 15vw;
        max-width: 80px;
    }

    .give_it_a_trylocal .holder h2 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 768px) {
    .give_it_a_trylocal {
        padding: 8vh 0;
    }

    .give_it_a_trylocal .holder {
        padding: 4vh 3vw;
    }

    .give_it_a_trylocal .holder h2 {
        font-size: 22px;
    }

    .give_it_a_trylocal .holder .button {
        font-size: 14px;
        padding: 1.2vh 2.5vw;
    }
}.target_audiencelocal {
    position: relative;
    background: rgb(141,166,110);
    padding: 120px 0;
    overflow: hidden;
}

.target_audiencelocal::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vh;
    top: -25vh;
    left: -25vw;
    background: repeating-linear-gradient(
        45deg,
        rgb(76,112,66,0.5) 0px,
        rgb(76,112,66,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    animation: moveBackground 40s linear infinite;
    opacity: 0.1;
}

@keyframes moveBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.target_audiencelocal .container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
}

.target_audiencelocal .who_needs_photo {
    flex: 0 0 450px;
    height: 450px;
    position: relative;
    overflow: hidden;
    clip-path: circle(50% at 50% 50%);
    transform: rotate(-5deg);
}

.target_audiencelocal .who_needs_photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 15px solid #ffffff;
    border-radius: 50%;
    opacity: 0.3;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.target_audiencelocal .who_needs_text {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.target_audiencelocal .who_needs_text h2 {
    font-size: 36px;
    font-weight: 700;
    color: rgb(76,112,66);
    margin-bottom: 50px;
    position: relative;
    padding: 15px 25px;
    display: inline-block;
}

.target_audiencelocal .who_needs_text h2::before,
.target_audiencelocal .who_needs_text h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid rgb(76,112,66);
    opacity: 0.6;
}

.target_audiencelocal .who_needs_text h2::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.target_audiencelocal .who_needs_text h2::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.target_audiencelocal .who_needs_list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.target_audiencelocal .who_needs_list div {
    background: #ffffff;
    padding: 30px;
    border-radius: 60px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.target_audiencelocal .who_needs_list div:nth-child(even) {
    flex-direction: row-reverse;
    border-radius: 0 60px;
}

.target_audiencelocal .who_needs_list div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgb(34,64,47,0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.target_audiencelocal .who_needs_list div:hover {
    transform: translateX(15px);
}

.target_audiencelocal .who_needs_list div:hover::before {
    opacity: 0.1;
}

.target_audiencelocal .who_needs_list svg {
    width: 38px;
    height: 38px;
    fill: rgb(76,112,66);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 0 rgb(76,112,66,0.5));
}

.target_audiencelocal .who_needs_list div span {
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .target_audiencelocal {
        padding: 100px 0;
    }

    .target_audiencelocal .who_needs_photo {
        flex: 0 0 400px;
        height: 400px;
        width: 400px;
    }
}

@media (max-width: 991px) {
    .target_audiencelocal {
        padding: 80px 0;
    }

    .target_audiencelocal .container {
        flex-direction: column;
        text-align: center;
    }

    .target_audiencelocal .who_needs_photo {
        flex: 0 0 350px;
        height: 350px;
        transform: none;
        width: 350px;
    }

    .target_audiencelocal .who_needs_list div,
    .target_audiencelocal .who_needs_list div:nth-child(even) {
        flex-direction: row;
        border-radius: 40px 0;
        justify-content: center;
    }

    .target_audiencelocal .who_needs_list div:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .target_audiencelocal {
        padding: 60px 0;
    }

    .target_audiencelocal .who_needs_photo {
        flex: 0 0 300px;
        height: 300px;
    }

    .target_audiencelocal .who_needs_text h2 {
        font-size: calc(36px * 0.9);
        margin-bottom: 40px;
    }

    .target_audiencelocal .who_needs_list div {
        padding: 25px;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .target_audiencelocal {
        padding: 50px 0;
    }

    .target_audiencelocal .who_needs_photo {
        flex: 0 0 250px;
        height: 250px;
    }

    .target_audiencelocal .who_needs_text h2 {
        font-size: calc(36px * 0.8);
        padding: 10px 20px;
    }

    .target_audiencelocal .who_needs_text h2::before,
    .target_audiencelocal .who_needs_text h2::after {
        width: 20px;
        height: 20px;
    }

    .target_audiencelocal .who_needs_list div {
        padding: 20px;
    }

    .target_audiencelocal .who_needs_list svg {
        width: 30px;
        height: 30px;
    }
}.main_header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}
.main_header .header_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
}
.main_header .header_logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(76,112,66);
    font-weight: 700;
    font-size: 19px;
    transition: color 0.3s ease;
}
.main_header .header_logo:hover {
    color: rgb(34,64,47);
}
.main_header .header_logo svg,
.main_header .header_logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(76,112,66);
    transition: fill 0.3s ease;
}
.main_header .header_logo:hover svg,
.main_header .header_logo:hover img {
    fill: rgb(34,64,47);
}
.main_header .header_description {
    font-size: 16px;
    color: #000000;
    margin-left: 20px;
    position: relative;
    padding-left: 15px;
}
.main_header .header_description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background-color: rgb(76,112,66);
}
.main_header .header_menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.main_header .header_menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    font-size: 14px;
    transition: color 0.3s ease;
}
.main_header .header_menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(76,112,66);
    transition: width 0.3s ease;
}
.main_header .header_menu a:hover,
.main_header .header_menu a:focus {
    color: rgb(76,112,66);
}
.main_header .header_menu a:hover::after,
.main_header .header_menu a:focus::after {
    width: 100%;
}
@media (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_header .logo_holder {
        margin-bottom: 15px;
    }
    .main_header .header_description {
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 0;
        padding-top: 15px;
    }
    .main_header .header_description::before {
        left: 0;
        top: 0;
        transform: none;
        width: 50px;
        height: 3px;
    }
    .main_header .header_menu {
        flex-direction: column;
        width: 100%;
    }
    .main_header .header_menu a {
        padding: 10px 0;
        border-bottom: 1px solid rgb(34,64,47,0.5);
    }
    .main_header .header_menu a:last-child {
        border-bottom: none;
    }
    .main_header .header_menu a::after {
        display: none;
    }
}
.main_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgb(76,112,66);
}
@media (prefers-reduced-motion: reduce) {
    .main_header,
    .main_header *,
    .main_header *::before,
    .main_header *::after {
        transition: none !important;
    }
}#contact_form {
    padding: 100px 0;
    background: rgb(141,166,110);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_informationlocal .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.contact_informationlocal .holder {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.contact_informationlocal .info {
    background: rgb(34,64,47);
    color: #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.contact_informationlocal .info h3 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
}
.contact_informationlocal .logo_holder {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact_informationlocal .logo_holder img, .contact_informationlocal .logo_holder svg {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    fill: rgb(76,112,66);
}
.contact_informationlocal .contact_info {
    margin-top: 30px;
}
.contact_informationlocal .contact_info h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(76,112,66);
}
.contact_informationlocal .contact_info div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.contact_informationlocal .contact_info div svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    margin-right: 10px;
}
.contact_informationlocal .contact_info span {
    font-size: 15px;
}
.contact_informationlocal .form {
    width: calc(100% - 400px);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact_informationlocal .form h3 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #000000;
}
.contact_informationlocal .form form {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contact_informationlocal .form input,
.contact_informationlocal .form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    border: 1px solid rgb(34,64,47,0.5);
    border-radius: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact_informationlocal .form input:focus,
.contact_informationlocal .form textarea:focus {
    border-color: rgb(76,112,66);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    outline: none;
}
.contact_informationlocal .form .button {
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 700;
    background: rgb(76,112,66);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.contact_informationlocal .form .button:hover {
    background: rgb(34,64,47);
    transform: translateY(-2px);
}
.contact_informationlocal .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contact_informationlocal .agree input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
    margin-bottom: 0;
}
.contact_informationlocal .agree label {
    font-size: 15px;
}
.contact_informationlocal .agree a {
    color: rgb(76,112,66);
    text-decoration: underline;
    margin-left: 5px;
}
@media (max-width: 992px) {
    .contact_informationlocal .holder {
        flex-direction: column;
    }
    .contact_informationlocal .info,
    .contact_informationlocal .form {
        width: 100%;
        padding: 20px;
    }
}
@media (max-width: 600px) {
    #contact_form {
        padding: 50px 0;
    }
    .contact_informationlocal .info h3,
    .contact_informationlocal .form h3 {
        font-size: 45px;
    }
    .contact_informationlocal .form input,
    .contact_informationlocal .form textarea {
        padding: 10px;
    }
}
footer {
    background: linear-gradient(135deg, #000000 0%, rgb(34,64,47) 100%);
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    padding: 60px 0;
}
footer .copyright {
    background: rgb(76,112,66);
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
}
footer .logo_holder svg, footer .logo_holder svg path {
    fill: rgb(76,112,66);
}
footer h5 {
    color: rgb(76,112,66);
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
footer .menu a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}
footer .menu a:hover {
    color: rgb(76,112,66);
}
footer .copyright_info {
    color: #ffffff;
    font-size: 16px;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
footer .contact_info div svg, footer .contact_info div svg path {
    fill: rgb(76,112,66);
}
footer .contact_info div span {
    color: #ffffff;
    font-size: 12px;
    margin-left: 10px;
}
footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .footer_agreement {
    display: flex;
    margin: 20px 0;
    justify-content: flex-end;
    text-align: right;
    font-size: 12px;
    color: #ffffff;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 100px;
    width: 100px;
    margin-right: 20px;
}
footer h5 {
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 700;
}
footer .contact_info {
    display: flex;
    flex-direction: column;
}
footer .contact_info div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: flex-start;
}
footer .contact_info div img, footer .contact_info div svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}
footer .menu_holder {
    display: flex;
    flex-direction: column;
}
footer .menu a {
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 10px;
    color: #ffffff;
}
footer .copyright {
    font-size: 16px;
    padding: 20px 0;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        padding: 0 20px;
    }
    footer .logo_holder svg, footer .logo_holder img {
        margin-right: 0;
    }
    footer .contact_info div span {
        text-align: left;
    }
    footer .footer_agreement {
        text-align: center;
    }
}
@media only screen and (max-width: 800px) {
    footer .menu, footer .menu_holder, footer .footer_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .contact_info {
        margin-top: 20px;
    }
    footer h5 {
        margin-top: 10px;
    }
    footer .footer_agreement {
        justify-content: center;
    }
}
.wrapping-containerlocal .course_overviewlocal {
    padding: 60px 0;
    background: rgb(34,64,47);
    overflow: hidden;
}

.wrapping-containerlocal .course_overviewlocal .items {
    display: flex;
    justify-content: center;
}

.wrapping-containerlocal .course_overviewlocal .items .course {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(135deg, rgb(76,112,66), rgb(34,64,47));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.wrapping-containerlocal .course_overviewlocal .items .course:hover {
    transform: translateY(-5px);
}

.wrapping-containerlocal .course_overviewlocal .photo {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.wrapping-containerlocal .course_overviewlocal .items .course:hover .photo {
    transform: scale(1.05);
}

.wrapping-containerlocal .course_overviewlocal .text_holder {
    padding: 40px;
    width: 100%;
    text-align: center;
}

.wrapping-containerlocal .course_overviewlocal .text_holder h3 {
    font-family: Ubuntu, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wrapping-containerlocal .course_overviewlocal .text_holder p {
    font-family: Ubuntu, sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.wrapping-containerlocal .course_overviewlocal .button {
    display: inline-block;
    padding: 15px 30px;
    background: rgb(76,112,66);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.wrapping-containerlocal .course_overviewlocal .button:hover {
    background: rgb(34,64,47);
    transform: translateY(-3px);
}

@media only screen and (max-width: 800px) {
    .wrapping-containerlocal .course_overviewlocal .text_holder {
        padding: 20px;
    }
}
.privacy_sectionlocal {
    padding: 50px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    height: auto;
    background-color: #ffffff;

    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.privacy_sectionlocal::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgb(76,112,66);

    z-index: -1;
}

.privacy_sectionlocal::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px dashed rgb(34,64,47);
    border-radius: 10px;
    z-index: -1;
}

.privacy_sectionlocal h1 {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 40px;
    color: rgb(76,112,66);
    font-family: Ubuntu, sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    border-bottom: 3px double rgb(76,112,66);
    padding-bottom: 15px;
}

.privacy_sectionlocal h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 31px;
    color: rgb(34,64,47);
    font-family: Ubuntu, sans-serif;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px dashed rgb(34,64,47);
    padding-bottom: 10px;
}

.privacy_sectionlocal h3, .privacy_sectionlocal h4, .privacy_sectionlocal h5, .privacy_sectionlocal h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 22px;
    color: #000000;
    font-family: Ubuntu, sans-serif;
    font-weight: 400;
    border-left: 4px solid #000000;
    padding-left: 10px;
}

.privacy_sectionlocal ul, .privacy_sectionlocal ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 15px 0;
    color: #000000;
    font-family: Ubuntu, sans-serif;
    font-size: 18px;
    margin: 0;
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    padding-left: 20px;
    list-style: none;
}

.privacy_sectionlocal li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.privacy_sectionlocal li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: rgb(76,112,66);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.privacy_sectionlocal section {
    background: none;
}

.privacy_sectionlocal p, .privacy_sectionlocal span, .privacy_sectionlocal div {
    line-height: 1.75;
    margin-bottom: 20px;
    color: #000000;
    font-family: Ubuntu, sans-serif;
    font-size: 18px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 800px) {
    .privacy_sectionlocal {
        padding: 30px;
        width: 100%;
    }

    .privacy_sectionlocal h1 {
        font-size: calc(22px - 6px);
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .privacy_sectionlocal h2 {
        font-size: calc(22px - 6px);
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .privacy_sectionlocal ul, .privacy_sectionlocal ol {
        padding-left: 15px;
    }

    .privacy_sectionlocal li {
        padding-left: 20px;
    }

    .privacy_sectionlocal p, .privacy_sectionlocal span, .privacy_sectionlocal div {
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
}