* {
    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: Arial, sans-serif;
    color: #000000;
}
.panel-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
section {
    background-color: rgb(241,232,167);
}
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;
    }
}.course_details {
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgb(174,208,158,0.5), rgb(97,178,146,0.5));
    position: relative;
}

.course_details h2 {
    color: rgb(97,178,146);
    font-size: 41px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.course_details .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.course_details .holder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.course_details .items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.course_details .course {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 800px;
    margin: 20px;
    position: relative;
}

.course_details .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15);
}

.course_details .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.course_details .photo {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid rgb(97,178,146);
    filter: brightness(0.9);
}

.course_details .text_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-top: 2px solid rgb(97,178,146);
}

.course_details h3 {
    font-size: 35px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.course_details p {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.course_details .button {
    background: rgb(174,208,158);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.course_details .button:hover {
    background: rgb(97,178,146);
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 600px) {
    .course_details {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .course_details h2 {
        font-size: 35px;
    }

    .course_details h3 {
        font-size: 23px;
    }

    .course_details .photo {
        height: 250px;
    }
}

.panel-container .course_details .items {
    width: 100%;
}

.panel-container .course_details .items .course .content {
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.panel-container .course_details .photo {
    border-radius: 20px;
    height: 500px;
    width: 100%;
    margin: 0;
}

.panel-container .course_details .text_holder {
    border-radius: 20px;
    border: 5px solid rgb(97,178,146);
    width: 80%;
    margin-top: -30px;
    background: #ffffff;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.panel-container .course_details h3 {
    font-size: 35px;
    font-weight: 700;
    color: #000000;
}

.panel-container .course_details .button {
    display: inline-block;
    width: fit-content;
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 10px;
    background: rgb(174,208,158);
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.panel-container .course_details .button:hover {
    background: rgb(97,178,146);
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .panel-container .course_details .photo {
        width: 100%;
        height: 300px;
    }

    .panel-container .course_details .text_holder {
        width: 100%;
        margin-top: 20px;
        padding: 20px;
    }

    .panel-container .course_details .items .course {
        padding: 0;
        margin: 0;
    }

    .panel-container .course_details h3 {
        font-size: 23px;
    }
}
.give_it_a_try {
    padding: 60px 0;
    background: rgb(241,232,167);
}
.give_it_a_try .holder{
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.give_it_a_try .holder svg, .give_it_a_try .holder svg path {
    fill: rgb(174,208,158);
    width: 120px;
    height: 120px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgb(174,208,158);
    flex-shrink: 0;
}
.give_it_a_try .holder h2 {
    font-size: 43px;
    text-align: center;
    margin: 30px 0;
    color: #000000;
}
.give_it_a_try .holder .button {
    padding: 20px 40px;
    background: rgb(174,208,158);
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    flex-shrink: 0;
}
.give_it_a_try .holder .button:hover {
    background: rgb(97,178,146);
}
@media only screen and (max-width: 800px) {
    .give_it_a_try .holder h2 {
        font-size: 24px;
    }
    .give_it_a_try .holder {
        flex-direction: column;
    }
}.customer_comments {
    background: linear-gradient(135deg, #000000, rgb(97,178,146));
    padding: 80px 5vw;
    position: relative;
    overflow: hidden;
}

.customer_comments h3 {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 20px;
}

.customer_comments h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgb(174,208,158);
    border-radius: 2px;
}

.customer_comments .container {
    max-width: 900px;
    margin: 0 auto;
}

.customer_comments .reviews {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.customer_comments .reviews .review {
    display: flex;
    border: 2px solid rgb(97,178,146);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.customer_comments .reviews .review:hover {
    border-color: rgb(174,208,158);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.customer_comments .reviews .review .photo {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('') no-repeat center center;
    background-size: cover;
}

.customer_comments .reviews .text {
    padding: 25px;
    background: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.customer_comments .reviews .text p {
    font-size: 23px;
    font-weight: 600;
    color: rgb(174,208,158);
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 30px;
}

.customer_comments .reviews .text p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: calc(23px * 2);
    color: rgb(174,208,158);
    opacity: 0.5;
}

.customer_comments .reviews .text span {
    font-size: calc(13px * 1.1);
    color: #000000;
    line-height: 1.6;
    font-style: italic;
}

@media only screen and (max-width: 768px) {
    .customer_comments .reviews .review {
        flex-direction: column;
    }

    .customer_comments .reviews .review .photo {
        width: 100%;
        height: 250px;
    }

    .customer_comments .reviews .text {
        text-align: center;
        padding: 30px;
    }

    .customer_comments .reviews .text p {
        padding-left: 0;
        font-size: calc(23px * 0.9);
    }

    .customer_comments .reviews .text p::before {
        left: -15px;
        top: -15px;
    }

    .customer_comments .reviews .text span {
        font-size: 13px;
    }
}

@media only screen and (max-width: 480px) {
    .customer_comments h3 {
        font-size: 20px;
    }

    .customer_comments .reviews .text p {
        font-size: 13px;
    }

    .customer_comments .reviews .text span {
        font-size: 16px;
    }

    .customer_comments .reviews .review .photo {
        height: 200px;
    }
}.course_rewards {
    position: relative;
    padding: 180px 0;
    background: rgb(241,232,167);
    overflow: hidden;
}

.course_rewards::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgb(174,208,158,0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgb(174,208,158,0.5) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    transform: perspective(1000px) rotateX(60deg) translateY(-100px);
    transform-origin: top;
}

.course_rewards::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgb(174,208,158,0.5) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgb(97,178,146,0.5) 0%, transparent 40%);
    mix-blend-mode: screen;
}

.course_rewards .container {
    position: relative;
    z-index: 2;
}

.course_rewards .holder {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.course_rewards .holder::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        rgb(174,208,158), 
        rgb(97,178,146), 
        rgb(174,208,158)
    );
    border-radius: calc(16px + 2px);
    z-index: -1;
    opacity: 0.3;
    animation: borderFlow 8s linear infinite;
    background-size: 200% 200%;
}

.course_rewards h3 {
    grid-column: 3 / 11;
    text-align: center;
    color: #ffffff;
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 10px;
    transform: translateY(30px);
    opacity: 0;
    animation: titleReveal 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.course_rewards .content_holder {
    grid-column: 1 / -1;
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    padding: 40px;
    min-height: 600px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}

.course_rewards .content_holder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    border-radius: 16px;
}

.course_rewards .content_holder > div {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    position: relative;
}

.course_rewards .content_holder p {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 35px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.7;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
}

.course_rewards .content_holder p:nth-child(4n+1) {
    grid-column: 1 / 8;
    animation: cardReveal 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.course_rewards .content_holder p:nth-child(4n+2) {
    grid-column: 8 / -1;
    animation: cardReveal 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.2s forwards;
}

.course_rewards .content_holder p:nth-child(4n+3) {
    grid-column: 1 / 5;
    animation: cardReveal 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.4s forwards;
}

.course_rewards .content_holder p:nth-child(4n) {
    grid-column: 5 / -1;
    animation: cardReveal 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.6s forwards;
}

.course_rewards .content_holder p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(0 0, 0% 0, 0% 0);
    transition: clip-path 0.6s ease;
}

.course_rewards .content_holder p:hover::before {
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.course_rewards .content_holder p::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-right: 2px solid rgb(97,178,146);
    border-bottom: 2px solid rgb(97,178,146);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course_rewards .content_holder p:hover::after {
    opacity: 1;
}

@keyframes borderFlow {
    0% { background-position: 0 0; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0 0; }
}

@keyframes titleReveal {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cardReveal {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1400px) {
    .course_rewards {
        padding: 140px 0;
    }

    .course_rewards h3 {
        grid-column: 2 / 12;
    }
}

@media (max-width: 1200px) {
    .course_rewards {
        padding: 120px 0;
    }

    .course_rewards h3 {
        grid-column: 1 / -1;
        font-size: calc(47px * 0.9);
        padding: 30px;
    }

    .course_rewards .content_holder p:nth-child(4n+1) {
        grid-column: 1 / -1;
    }

    .course_rewards .content_holder p:nth-child(4n+2) {
        grid-column: 1 / -1;
    }

    .course_rewards .content_holder p:nth-child(4n+3) {
        grid-column: 1 / 7;
    }

    .course_rewards .content_holder p:nth-child(4n) {
        grid-column: 7 / -1;
    }
}

@media (max-width: 992px) {
    .course_rewards {
        padding: 100px 0;
    }

    .course_rewards .holder {
        padding: 20px;
    }

    .course_rewards .content_holder {
        padding: 30px;
    }

    .course_rewards h3 {
        font-size: calc(47px * 0.8);
        padding: 25px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .course_rewards {
        padding: 80px 0;
    }

    .course_rewards .content_holder {
        padding: 20px;
    }

    .course_rewards .content_holder p:nth-child(4n+3),
    .course_rewards .content_holder p:nth-child(4n) {
        grid-column: 1 / -1;
    }

    .course_rewards .content_holder p {
        padding: 25px;
    }

    .course_rewards h3 {
        font-size: calc(47px * 0.7);
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .course_rewards {
        padding: 60px 0;
    }

    .course_rewards .holder {
        padding: 15px;
    }

    .course_rewards .content_holder {
        padding: 15px;
        min-height: 500px;
    }

    .course_rewards h3 {
        font-size: calc(47px * 0.6);
        padding: 15px;
        margin-bottom: 30px;
    }

    .course_rewards .content_holder p {
        padding: 20px;
        font-size: calc(12px * 0.9);
    }
}.price_list {
    background: rgb(241,232,167);
    padding: 0 0 120px;
    position: relative;
    overflow: hidden;
}

.price_list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(174,208,158,0.5) 0%, rgb(97,178,146,0.5) 100%);
    opacity: 0.85;
    z-index: 1;
}

.price_list .container {
    position: relative;
    z-index: 2;
}

.price_list .price_info_holder {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.price_list .photo {
    height: 400px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px -5px rgba(0, 0, 0, 0.5);
}

.price_list h2 {
    font-size: 36px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.price_list h3 {
    font-size: 22px;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.price_list .price_items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price_list .price_item {
    background: #ffffff;
    border-radius: 27px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    align-items: center;
    gap: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price_list .price_item h3 {
    font-size: 22px;
    color: rgb(174,208,158);
    margin: 0;
    text-align: left;
}

.price_list .price_item .price_amount {
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.price_list .price_item span {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.price_list .price_item .button {
    background: linear-gradient(135deg, rgb(174,208,158) 0%, rgb(97,178,146) 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.price_list .price_item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.price_list .price_item .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgb(174,208,158,0.5);
}

@media (max-width: 991px) {
    .price_list {
        padding: 0 0 80px;
    }
    
    .price_list .photo {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .price_list .price_item {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        padding: 30px;
        gap: 20px;
    }
    
    .price_list .price_item h3 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .price_list .price_item .price_amount {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }
    
    .price_list .price_item span {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .price_list .price_item .button {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .price_list {
        padding: 0 0 60px;
    }
    
    .price_list .photo {
        height: 200px;
        margin-bottom: 30px;
    }
    
    .price_list h2 {
        font-size: calc(36px * 0.9);
    }
    
    .price_list h3 {
        font-size: calc(22px * 0.9);
        margin-bottom: 30px;
    }
    
    .price_list .price_item {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        padding: 25px;
        gap: 15px;
    }
    
    .price_list .price_item h3,
    .price_list .price_item .price_amount {
        grid-column: 1;
        text-align: center;
    }
    
    .price_list .price_item h3 {
        grid-row: 1;
    }
    
    .price_list .price_item .price_amount {
        grid-row: 2;
    }
    
    .price_list .price_item span {
        grid-row: 3;
        text-align: center;
    }
    
    .price_list .price_item .button {
        grid-row: 4;
    }
}.ideal_participants {
    position: relative;
    background: rgb(241,232,167);
    padding: 100px 0;
    overflow: hidden;
}

.ideal_participants::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(
        45deg,
        rgb(174,208,158,0.5) 0%,
        rgb(174,208,158,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    animation: backgroundMove 30s linear infinite;
    opacity: 0.1;
}

@keyframes backgroundMove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ideal_participants .container {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    align-items: center;
}

.ideal_participants .who_needs_photo {
    flex: 0 0 45%;
    position: relative;
    padding-bottom: 45%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 20px #ffffff;
}

.ideal_participants .who_needs_photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgb(97,178,146,0.5) 100%
    );
}

.ideal_participants .who_needs_text {
    flex: 1;
}

.ideal_participants .who_needs_text h2 {
    font-size: 29px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.ideal_participants .who_needs_text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: rgb(174,208,158);
    border-radius: 10px;
}

.ideal_participants .who_needs_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.ideal_participants .who_needs_list div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #ffffff;
    border-radius: 26px;
    border-left: 4px solid rgb(174,208,158);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.ideal_participants .who_needs_list div:hover {
    background: rgb(174,208,158);
    color: #ffffff;
}

.ideal_participants .who_needs_list div:hover svg {
    fill: #ffffff;
}

.ideal_participants .who_needs_list svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: rgb(174,208,158);
    transition: fill 0.3s ease;
}

@media (max-width: 1200px) {
    .ideal_participants .ideal_participants {
        padding: 80px 0;
    }
    
    .ideal_participants .ideal_participants .container {
        gap: 60px;
        flex-direction: column;
    }
    
    .ideal_participants .who_needs_photo {
        flex: 0 0 40%;
        padding-bottom: 40%;
    }
}

@media (max-width: 991px) {
    .ideal_participants .ideal_participants .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .ideal_participants .who_needs_photo {
        width: 60%;
        padding-bottom: 60%;
        flex: none;
    }
    
    .ideal_participants .who_needs_text {
        text-align: center;
    }
    
    .ideal_participants .who_needs_text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ideal_participants .who_needs_list div {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ideal_participants .ideal_participants {
        padding: 60px 0;
    }
    
    .ideal_participants .who_needs_photo {
        width: 80%;
        padding-bottom: 80%;
    }
    
    .ideal_participants .who_needs_list {
        grid-template-columns: 1fr;
    }
    
    .ideal_participants .ideal_participants h2 {
        font-size: calc(29px * 0.9);
    }
}

@media (max-width: 480px) {
    .ideal_participants .ideal_participants {
        padding: 40px 0;
    }
    
    .ideal_participants .who_needs_photo {
        width: 100%;
        padding-bottom: 100%;
    }
    
    .ideal_participants .ideal_participants h2 {
        font-size: calc(29px * 0.8);
        margin-bottom: 40px;
    }
    
    .ideal_participants .who_needs_list div {
        padding: 20px;
    }
}.opening_board {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: rgb(174,208,158);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.opening_board .title_page_holder {
    width: 70%;
    min-height: 800px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 40px;
    z-index: 2;
}
.opening_board .style_element {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgb(97,178,146);
}
.opening_board .style_element::before,
.opening_board .style_element::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgb(97,178,146);
}
.opening_board .style_element::before {
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
}
.opening_board .style_element::after {
    width: 30px;
    height: 30px;
    bottom: -15px;
    right: -15px;
}
.opening_board .style_element h1 {
    color: rgb(97,178,146);
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}
.opening_board .style_element h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: rgb(97,178,146);
    margin: 10px auto 0;
    border-radius: 2px;
}
.opening_board .style_element h3 {
    color: rgb(97,178,146);
    font-size: 33px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}
.opening_board .style_element p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

@media only screen and (max-width: 1200px) {
    .opening_board .title_page_holder {
        width: 80%;
        min-height: 700px;
        padding: 30px;
    }
    .opening_board .style_element {
        padding: 30px;
    }
    .opening_board .style_element h1 {
        font-size: 33px;
    }
    .opening_board .style_element h3 {
        font-size: 24px;
    }
    .opening_board .style_element p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 800px) {
    .opening_board {
        padding: 30px 10px;
    }
    .opening_board .title_page_holder {
        width: 90%;
        min-height: 600px;
    }
    .opening_board .style_element {
        padding: 20px;
        gap: 15px;
    }
    .opening_board .style_element h1 {
        font-size: 24px;
    }
    .opening_board .style_element h3 {
        font-size: 22px;
    }
    .opening_board .style_element p {
        font-size: 15px;
    }
}
.panel-container .opening_board {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgb(241,232,167);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.panel-container .opening_board .title_page_holder {
    width: 100%;
    min-height: 700px;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 40px;
    z-index: 1;
}
.panel-container .opening_board .style_element {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    text-align: left;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 1px solid #000000;
}
.panel-container .opening_board .style_element::before,
.panel-container .opening_board .style_element::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #000000;
}
.panel-container .opening_board .style_element::before {
    width: 25px;
    height: 25px;
    top: -12px;
    left: -12px;
}
.panel-container .opening_board .style_element::after {
    width: 35px;
    height: 35px;
    bottom: -18px;
    right: -18px;
}
.panel-container .opening_board .style_element h1 {
    color: #000000;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 3;
}
.panel-container .opening_board .style_element h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #000000;
    margin: 12px 0 0;
    border-radius: 2px;
}
.panel-container .opening_board .style_element h3 {
    color: #000000;
    font-size: 33px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}
.panel-container .opening_board .style_element p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 3;
}


@media only screen and (max-width: 1200px) {
    .panel-container .opening_board .title_page_holder {
        width: 85%;
        min-height: 600px;
        padding: 30px;
    }
    .panel-container .opening_board .style_element {
        padding: 30px;
    }
    .panel-container .opening_board .style_element h1 {
        font-size: 33px;
    }
    .panel-container .opening_board .style_element h3 {
        font-size: 24px;
    }
    .panel-container .opening_board .style_element p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 800px) {
    .panel-container .opening_board {
        padding: 30px 10px;
    }
    .panel-container .opening_board .title_page_holder {
        width: 90%;
        min-height: 500px;
    }
    .panel-container .opening_board .style_element {
        padding: 20px;
        gap: 20px;
    }
    .panel-container .opening_board .style_element h1 {
        font-size: 24px;
    }
    .panel-container .opening_board .style_element h3 {
        font-size: 22px;
    }
    .panel-container .opening_board .style_element p {
        font-size: 15px;
    }
}.panel-container .our_team .holder {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: rgb(241,232,167);
}

.our_team {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(97,178,146) 30%, rgb(174,208,158,0.5) 100%);
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.panel-container .our_team .holder .photo {
    width: 400px;
    height: 400px;
    border-radius: 26px;
    box-shadow: 0 0 30px rgb(97,178,146,0.5), 0 0 60px rgb(97,178,146,0.5);
    transition: transform 0.3s ease-in-out;
    margin-right: 24px;
}

.panel-container .our_team .caption_holder {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 520px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.panel-container .our_team .style_element {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(174,208,158);
    padding: 50px 60px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 420px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 20px rgb(174,208,158,0.5);
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

}


.panel-container .our_team h2 {
    color: #ffffff;
    margin-top: 10px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgb(97,178,146);
}

.panel-container .our_team p {
    color: #ffffff;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 0 0 5px rgb(174,208,158,0.5);
}

@media only screen and (max-width: 1200px) {
    .panel-container .our_team .holder {
        padding: 0;
    }
    .panel-container .our_team .holder .photo {
        width: 300px;
        height: 300px;
        margin: 20px 0;
    }

    .panel-container .our_team .style_element {
        width: 70%;
        padding: 40px 50px;
    }
}

@media only screen and (max-width: 800px) {
    .panel-container .our_team {
        padding: 60px 0;
    }

    .panel-container .our_team .style_element {
        width: 100%;
        padding: 30px;
    }

    .panel-container .our_team .holder .photo {
        width: 250px;
        height: 250px;
    }

    .panel-container .our_team .caption_holder {
        flex-direction: column-reverse;
        min-height: unset;
    }

    .panel-container .our_team h2 {
        font-size: 21px;
    }
}.benefits_overview {
    padding: 60px 20px;
    background: rgb(174,208,158);
    color: #ffffff;
    border-top: 5px solid rgb(97,178,146);
    border-bottom: 5px solid rgb(97,178,146);
}
.benefits_overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.benefits_overview .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}
.benefits_overview .advantages_content h2 {
    font-size: 35px;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}
.benefits_overview .advantages_content h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: rgb(97,178,146);
}
.benefits_overview .advantages_photo_holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}
.benefits_overview .advantages_photo_holder .photo {
    width: 45%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border: 2px solid rgb(97,178,146);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefits_overview .advantages_holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 50%;
    background: rgb(97,178,146,0.5);
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(174,208,158);
}
.benefits_overview .advantages_holder .advantage_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgb(97,178,146);
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 100%;
}
.benefits_overview .advantages_holder .advantage_item:hover {
    background: rgb(174,208,158,0.5);
    transform: translateX(10px);
}
.benefits_overview .advantages_holder .advantage_item:last-child {
    border-bottom: none;
}
.benefits_overview .advantages_holder .advantage_image {
    margin-right: 15px;
    flex-shrink: 0;
}
.benefits_overview .advantages_holder .advantage_image svg,
.benefits_overview .advantages_holder .advantage_image svg path {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}
.benefits_overview .advantages_holder h4 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
}
@media only screen and (max-width: 1200px) {
    .benefits_overview .advantages_photo_holder {
        flex-direction: column;
        align-items: center;
    }
    .benefits_overview .advantages_photo_holder .photo,
    .benefits_overview .advantages_holder {
        width: 100%;
        margin-bottom: 20px;
    }
    .benefits_overview .advantages_holder {
        align-items: center;
    }
    .benefits_overview .advantages_holder .advantage_item {
        flex-direction: column;
        align-items: center;
    }
    .benefits_overview .advantages_holder .advantage_image {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 800px) {
    .benefits_overview .advantages_content h2 {
        font-size: 24px;
    }
    .benefits_overview .advantages_photo_holder .photo {
        height: 200px;
    }
    .benefits_overview .advantages_holder h4 {
        font-size: 13px;
    }
}
.privacy_recess {
    padding: 50px;
    width: 100%;
    height: auto;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #000000;
}
.privacy_recess h1 {
    grid-column: span 2;
    font-size: 48px;
    font-family: Arial, sans-serif;
    color: rgb(174,208,158);
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(97,178,146);
    padding-bottom: 10px;
}
.privacy_recess h2 {
    font-size: 38px;
    font-family: Arial, sans-serif;
    color: rgb(97,178,146);
    font-weight: 600;
    text-align: left;
    margin-top: 0;
    margin-bottom: 15px;
    border-left: 4px solid rgb(174,208,158);
    padding-left: 10px;
}
.privacy_recess h3, .privacy_recess h4, .privacy_recess h5 {
    font-size: 18px;
    color: #000000;
}
.privacy_recess ul {
    list-style-type: square;
    padding-left: 20px;
    margin: 0;
}
.privacy_recess li {
    margin-bottom: 10px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.5;
    background: rgb(97,178,146,0.5);
    padding: 10px;
    border-radius: 10px;
}
.privacy_recess div {
    line-height: 1.8;
    font-size: 13px;
    font-family: Arial, sans-serif;
    color: #000000;
    margin-bottom: 15px;
    padding: 15px;
    background: rgb(174,208,158,0.5);
    border-radius: 23px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}
.privacy_recess p, .privacy_recess span {
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 13px;
    color: #000000;
}
@media only screen and (max-width: 800px) {
    .privacy_recess {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .privacy_recess h1 {
        font-size: calc(18px - 4px);
        margin-bottom: 15px;
    }
    .privacy_recess h2 {
        font-size: calc(18px - 2px);
        margin-bottom: 10px;
    }
    .privacy_recess ul {
        padding-left: 15px;
    }
    .privacy_recess li {
        padding: 8px;
        margin-bottom: 8px;
    }
    .privacy_recess div {
        padding: 10px;
    }
}.appBlock {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(241,232,167);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.appBlock .container {
    max-width: 700px;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, rgb(241,232,167) 100%);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), inset 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.appBlock h2 {
    margin-bottom: 20px;
    font-size: 41px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: rgb(174,208,158);
    background: linear-gradient(145deg, rgb(174,208,158), rgb(97,178,146));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(174,208,158);
    width: 100%;
}
.appBlock p {
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-top: 10px;
    background: linear-gradient(145deg, rgb(174,208,158,0.5) 0%, rgb(97,178,146,0.5) 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 800px) {
    .appBlock {
        padding: 20px;
    }
    
    .appBlock .container {
        padding: 30px;
    }
    
    .appBlock h2 {
        font-size: 30px;
    }
    
    .appBlock p {
        font-size: 24px;
    }
}
footer {
    background: rgb(97,178,146);
    color: #ffffff;
    font-family: Arial, sans-serif;
}
footer .footer {
    padding: 60px 20px;
    border-top: 2px solid rgb(174,208,158);
    border-bottom: 2px solid rgb(97,178,146);
}
footer .footer_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer .logo_holder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
footer .logo_holder svg, footer .logo_holder img {
    height: 80px;
    width: 80px;
    margin-right: 20px;
    fill: rgb(174,208,158);
    border-radius: 10px;
}
footer .menu {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
footer .menu_holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer .menu a {
    text-decoration: none;
    font-size: 15px;
    margin: 5px 15px;
    padding: 10px 15px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(174,208,158);
    border-radius: 10px;
}
footer .menu a:hover {
    border-color: rgb(97,178,146);
}
footer .copyright {
    background: rgb(97,178,146);
    padding: 20px 10px;
    text-align: center;
    border-top: 1px solid rgb(174,208,158);
}
footer .copyright_info {
    font-size: 12px;
    color: #ffffff;
}
footer .copyright_info a {
    color: #ffffff;
    text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
    footer .footer_info {
        flex-direction: column;
    }
    footer .menu_holder {
        flex-direction: column;
    }
    footer .menu a {
        margin: 10px 0;
        padding: 8px 20px;
        font-size: 15px;
    }
}
@media only screen and (max-width: 800px) {
    footer .footer {
        padding: 40px 10px;
    }
    footer .footer_info {
        padding: 0 10px;
    }
    footer .menu a {
        margin: 5px 0;
        padding: 10px 15px;
        font-size: 15px;
    }
    footer .logo_holder {
        margin-bottom: 10px;
    }
    footer .copyright {
        padding: 15px 5px;
    }
    footer .copyright_info {
        font-size: 15px;
    }
}.get_in_touch {
    position: relative;
    background: rgb(241,232,167);
    padding: 80px 0;
    overflow: hidden;
}

.get_in_touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgb(174,208,158,0.5) 0%, transparent 40%),
                radial-gradient(circle at 80% 30%, rgb(97,178,146,0.5) 0%, transparent 40%);
    opacity: 0.6;
}

.get_in_touch .photo {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    z-index: 1;
}

.get_in_touch .photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

.get_in_touch .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    text-align: center;
}

.get_in_touch h3 {
    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.get_in_touch .contact_form_holder {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.get_in_touch .contact_form_holder::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgb(174,208,158,0.5);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.2;
}

.get_in_touch .contact_form_holder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: rgb(97,178,146,0.5);
    border-radius: 50%;
    transform: translate(-50%, 50%);
    opacity: 0.2;
}

.get_in_touch .form {
    flex: 1;
    padding: 50px;
    position: relative;
}

.get_in_touch form h3 {
    font-size: 18px;
    text-align: left;
    margin-bottom: 25px;
}

.get_in_touch input[type="text"],
.get_in_touch textarea {
    width: 100%;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #000000;
    transition: all 0.3s ease;
}

.get_in_touch input[type="text"]:focus,
.get_in_touch textarea:focus {
    border-color: rgb(174,208,158);
    box-shadow: 0 0 10px rgb(174,208,158,0.5);
    outline: none;
}

.get_in_touch textarea {
    height: 140px;
    resize: none;
}

.get_in_touch .agreement {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.get_in_touch .agreement input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.get_in_touch .agreement label {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    cursor: pointer;
}

.get_in_touch .agreement label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(174,208,158,0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.get_in_touch .agreement input[type="checkbox"]:checked + label::before {
    background: rgb(174,208,158);
    border-color: rgb(174,208,158);
}

.get_in_touch .agreement input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.get_in_touch .agreement a {
    color: rgb(174,208,158);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.get_in_touch .agreement a:hover {
    color: rgb(97,178,146);
}

.get_in_touch .button {
    background: rgb(174,208,158);
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.get_in_touch .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(97,178,146);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.get_in_touch .button:hover {
    box-shadow: 0 5px 15px rgb(174,208,158,0.5);
}

.get_in_touch .button:hover::before {
    transform: translateX(0);
}

.get_in_touch .info {
    width: 35%;
    padding: 50px;
    background: linear-gradient(135deg, rgb(174,208,158), rgb(97,178,146));
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.get_in_touch .info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    opacity: 0.3;
}

.get_in_touch .info h4 {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
}

.get_in_touch .info h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

.get_in_touch .contact_info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.get_in_touch .contact_info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.get_in_touch .contact_info li:last-child {
    border-bottom: none;
}

.get_in_touch .contact_info li:hover {
    transform: translateX(5px);
}

.get_in_touch .contact_info svg {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.get_in_touch .contact_info svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.get_in_touch .contact_info li:hover svg path {
    fill: rgba(255, 255, 255, 0.8);
}

.get_in_touch .contact_info span {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
}

.get_in_touch .contact_info a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.get_in_touch .contact_info a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .get_in_touch .photo {
        width: 40%;
        clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    }
    
    .get_in_touch .contact_form_holder {
        flex-direction: column;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .get_in_touch .form {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .get_in_touch .info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .get_in_touch {
        padding: 60px 0;
    }
    
    .get_in_touch .photo {
        display: none;
    }
    
    .get_in_touch h3 {
        font-size: calc(38px * 0.9);
    }
    
    .get_in_touch .form,
    .get_in_touch .info {
        padding: 40px 30px;
    }
    
    .get_in_touch form h3,
    .get_in_touch .info h4 {
        font-size: calc(18px * 0.9);
    }
}

@media (max-width: 576px) {
    .get_in_touch {
        padding: 40px 0;
    }
    
    .get_in_touch h3 {
        font-size: calc(38px * 0.8);
    }
    
    .get_in_touch .contact_form_holder {
        max-width: 95%;
    }
    
    .get_in_touch .form,
    .get_in_touch .info {
        padding: 30px 20px;
    }
    
    .get_in_touch input[type="text"],
    .get_in_touch textarea {
        padding: 12px;
    }
    
    .get_in_touch .button {
        width: 100%;
        padding: 12px;
    }
}.education_history {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(97,178,146), rgba(0, 0, 0, 0.5));
    position: relative;
    overflow: hidden;
    border: 5px solid rgb(174,208,158);
}
.education_history .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}
.education_history::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgb(174,208,158,0.5);
    transform: rotate(45deg);
    opacity: 0.1;
    z-index: 1;
}
.education_history .review {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid rgb(174,208,158);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.education_history .review .photo {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 4px solid rgb(174,208,158);
    max-width: 30vw;
    min-width: 200px;
    height: auto;
}
.education_history .review .photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}
.education_history .worker_description,
.education_history .worker_info {
    flex: 1;
    padding: 20px;
    color: #ffffff;
    background: rgb(97,178,146,0.5);
    position: relative;
    border: 3px solid rgb(174,208,158);
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 250px;
}
.education_history .worker_description::before,
.education_history .worker_info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}
.education_history .worker_description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 30vw;
}
.education_history .worker_description p {
    margin-bottom: 15px;
    font-size: 21px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.education_history .worker_info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 30vw;
}
.education_history .worker_info p {
    margin: 10px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(174,208,158);
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.education_history .review {
    animation: fadeInUp 0.5s ease-in-out both;
}
@media only screen and (max-width: 1200px) {
    .education_history .review {
        flex-direction: column;
        padding: 10px;
    }
    .education_history .review .photo {
        width: 100%;
        height: 400px;
        margin: 0 0 20px 0;
        max-width: 100%;
        flex: auto;
    }
    .education_history .worker_description,
    .education_history .worker_info {
        width: 100%;
        padding: 10px;
        max-width: 100%;
    }
    .education_history .worker_info p {
        font-size: 14px;
    }
}
header {
    background: linear-gradient(135deg, rgb(174,208,158), rgb(97,178,146));
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    border-bottom: 2px solid #000000;
}
.main_header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.main_header .header_holder {
    width: 100%;
}
.main_header .logo_holder {
    display: flex;
    align-items: center;
    border-right: 2px solid #000000;
    padding-right: 20px;
}
.main_header .logo_holder svg,
.main_header .logo_holder img {
    width: 60px;
    height: 60px;
    fill: #ffffff;
}
.main_header .header_logo svg text {
    fill: #ffffff;
}
.main_header .header_description {
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 20px;
    border-left: 2px solid #000000;
    margin: 14px 0;
}
.main_header .header_menu {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-grow: 1;
}
.main_header .header_menu a {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    border: 2px solid #000000;
}
.main_header .header_menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(174,208,158), rgb(97,178,146));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.main_header .header_menu a:hover::before {
    opacity: 1;
}
.main_header .header_menu a:hover {
    color: #000000;
    border-color: rgb(97,178,146);
}
@media only screen and (max-width: 1200px) {
    .main_header .container {
        flex-direction: column;
        justify-items: center;
    }
    .main_header .logo_holder {
        justify-content: center;
        border-right: none;
        border-bottom: 2px solid #000000;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .main_header .header_description {
        border-left: none;
        border-top: 2px solid #000000;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }
    .main_header .header_menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
@media only screen and (max-width: 800px) {
    .main_header .header_menu a {
        padding: 8px 12px;
        font-size: 16px;
    }
}
.main_header .header_menu a:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(174,208,158), rgb(97,178,146));
    opacity: 0.1;
    z-index: -1;
}