* {
    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: Merriweather, sans-serif;
    color: #000000;
}
.wrap-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(191,226,255);
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
    .container {
        padding: 0 12px;
    }
}.thankYouBox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(128,198,255,0.5);
    padding: 40px 20px;
    position: relative;
    color: #ffffff;
}
.thankYouBox .container {
    background: linear-gradient(135deg, rgb(128,198,255) 0%, rgb(0,86,155) 100%);
    padding: 60px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 800px;
    border: 1px solid rgb(128,198,255);
}
.thankYouBox .container h2 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.thankYouBox .container p {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    max-width: 700px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}
@media only screen and (max-width: 800px) {
    .thankYouBox {
        padding: 20px;
    }
    .thankYouBox .container {
        padding: 30px;
    }
    .thankYouBox .container h2 {
        font-size: 21px;
    }
    .thankYouBox .container p {
        font-size: 18px;
    }
}
.company-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(0,86,155), rgb(128,198,255,0.5));
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    position: relative;
    overflow: hidden;
}

.wrap-container .company-overview .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 90%;
    margin: 0 auto;
}

.wrap-container .company-overview .holder::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgb(128,198,255), transparent);
    opacity: 0.1;
    z-index: -1;
    transform: rotate(45deg);
}

.wrap-container .company-overview .caption_holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.wrap-container .company-overview .photo {
    width: 350px;
    height: 350px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 3px solid rgb(128,198,255);
    box-shadow: 0 0 20px rgb(128,198,255);
}

.wrap-container .company-overview .style_element {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgb(0,86,155);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.wrap-container .company-overview h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.wrap-container .company-overview p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-top: 20px;
    text-align: justify;
}

@media only screen and (max-width: 1200px) {
    .wrap-container .company-overview .photo {
        width: 300px;
        height: 300px;
    }

    .wrap-container .company-overview .style_element {
        padding: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .wrap-container .company-overview .photo {
        width: 250px;
        height: 250px;
    }

    .wrap-container .company-overview .style_element {
        padding: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .wrap-container .company-overview .style_element {
        padding: 15px;
    }

    .wrap-container .company-overview .photo {
        width: 200px;
        height: 200px;
    }

    .wrap-container .company-overview h2 {
        font-size: calc(30px - 5px);
    }

    .wrap-container .company-overview p {
        font-size: calc(18px - 2px);
    }
}.education-framework {
    padding: 80px 0;
    background: rgb(128,198,255);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.education-framework::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), transparent);
    z-index: -1;
}

.education-framework:hover {
    background: rgb(128,198,255);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.education-framework .holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: auto;
    animation: slideIn 1s ease-in-out;
}

.education-framework h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.education-framework h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: width 0.5s ease, left 0.5s ease;
}

.education-framework h2:hover::before {
    width: 100%;
    left: 0;
}

.education-framework p {
    text-align: center;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.education-framework:hover p {
    color: rgb(0,86,155);
}

@media only screen and (max-width: 800px) {
    .education-framework {
        padding: 40px 0;
    }

    .education-framework h2 {
        font-size: 22px;
    }

    .education-framework p {
        font-size: 18px;
    }
}

.wrap-container .education-framework .holder {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    width: 70%;
    margin-left: 0;
}

.wrap-container .education-framework h2 {
    text-align: left;
    font-size: 47px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    position: relative;
    margin-bottom: 10px;
    white-space: normal;
}

.wrap-container .education-framework p {
    text-align: left;
    font-size: 14px;
    color: #ffffff;
    transition: color 0.3s ease;
}

@media only screen and (max-width: 800px) {
    .wrap-container .education-framework {
        padding: 0;
    }

    .wrap-container .education-framework .holder {
        width: 100%;
        padding: 30px 10px;
    }

    .wrap-container .education-framework h2 {
        font-size: 29px;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.program-overview {
    padding: 120px 0;
    background: rgb(191,226,255);
    position: relative;
    overflow: hidden;
}

.program-overview .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.program-overview h2 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(128,198,255);
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.program-overview h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 5px;
    background: rgb(0,86,155);
    transform: translateX(-50%);
}

.program-overview .items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    padding: 0 20px;
}

.program-overview .course {
    background: #ffffff;
    border: 2px solid rgb(128,198,255,0.5);
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.program-overview .course::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgb(0,86,155,0.5);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.program-overview .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.program-overview .photo {
    width: 100%;
    height: 200px;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid rgb(0,86,155,0.5);
}

.program-overview .text_holder {
    text-align: center;
    width: 100%;
}

.program-overview h3 {
    font-size: 36px;
    font-weight: 600;
    color: rgb(128,198,255);
    margin-bottom: 15px;
    position: relative;
}

.program-overview h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 30px;
    height: 3px;
    background: rgb(0,86,155);
    transform: translateX(-50%);
}

.program-overview p {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-overview .button {
    display: inline-block;
    padding: 12px 24px;
    background: rgb(128,198,255);
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgb(128,198,255);
}

.program-overview .button:hover {
    background: rgb(0,86,155);
    border-color: rgb(0,86,155);
    color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .program-overview {
        padding: 80px 0;
    }

    .program-overview h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .program-overview .items {
        gap: 20px;
    }

    .program-overview .course {
        padding: 15px;
    }

    .program-overview h3 {
        font-size: 20px;
    }

    .program-overview p {
        font-size: 16px;
        line-height: 1.4;
    }

    .program-overview .button {
        padding: 10px 20px;
        font-size: 19px;
    }
}.education-experience {
    position: relative;
    background: rgb(0,86,155);
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.education-experience .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.education-experience .review {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.education-experience .photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 40px;
}

.education-experience .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.education-experience .worker_description {
    flex: 1;
}

.education-experience .review .name {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.education-experience .review span {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
}

.education-experience .review .quote {
    font-size: 18px;
    font-style: italic;
    color: #000000;
    margin-top: 20px;
    line-height: 1.6;
}

@media only screen and (max-width: 1200px) {
    .education-experience .review {
        width: 95%;
    }
}

@media only screen and (max-width: 992px) {
    .education-experience .review {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 40px;
    }

    .education-experience .photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}footer {
  background-color: #f0f0f0;
  padding: 40px 0;
  color: #333;
  font-family: Merriweather, sans-serif;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .logo_holder {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
footer .logo_holder svg{
  width: 80px;
  height: 80px;
}
footer .logo_holder img {
  width: 80px;
  height: auto;
  margin-right: 10px;
}
footer .logo_holder h3 {
  font-size: 24px;
  margin: 0;
  color: #555;
}
footer .menu {
  margin-bottom: 30px;
}
footer .menu h5 {
  color: #555;
  font-size: 18px;
  margin-bottom: 10px;
}
footer .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .menu li {
  margin-bottom: 10px;
}
footer .menu a {
  color: #777;
  text-decoration: none;
  font-size: 16px;
}
footer .menu a:hover {
  text-decoration: underline;
}
footer .contact_info {
  margin-bottom: 30px;
}
footer .contact_info h5 {
  color: #555;
  font-size: 18px;
  margin-bottom: 10px;
}
footer .contact_info p {
  margin: 0;
  font-size: 16px;
}
footer .contact_info svg {
  width: 20px;
  height: 20px;
  fill: #888;
  margin-right: 10px;
}
footer .footer_agreement {
  color: #555;
  font-size: 14px;
}
footer .footer_agreement a {
  color: #777;
  text-decoration: none;
}
footer .footer_agreement a:hover {
  text-decoration: underline;
}
footer .copyright_info {
  color: #777;
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  
  footer .logo_holder {
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
  }
  footer .menu ul {
    text-align: center;
  }
  footer .menu li {
    display: inline-block;
    margin-right: 20px;
  }
}

.benefits-summary .advantages_content h2 {
    color: rgb(0,86,155);
}

.benefits-summary .advantage_item svg, .benefits-summary .advantage_item svg path {
    fill: rgb(128,198,255);
}

.benefits-summary .advantage_item p {
    color: #000000;
}

.benefits-summary .advantage_item b {
    color: rgb(128,198,255);
}

.benefits-summary {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits-summary .advantages_holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits-summary .advantages_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits-summary .advantages_content h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 30px;
    font-weight: 600;
}

.benefits-summary .advantages_content h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits-summary .advantages_description {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits-summary .advantage_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits-summary .advantage_item svg, .benefits-summary .advantage_item img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrap-container .benefits-summary .advantages_holder .advantage_item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits-summary .advantages_content h2 {
        font-size: 30px;
    }

    .benefits-summary .advantages_holder {
        flex-direction: column;
    }

    .benefits-summary {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrap-container .benefits-summary .advantages_holder .advantage_item {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrap-container .benefits-summary {
    padding: 80px 20px;
    background: rgb(191,226,255);
}

.wrap-container .benefits-summary .advantages_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wrap-container .benefits-summary .advantages_content h2 {
    font-size: 42px;
    font-weight: 700;
    color: rgb(128,198,255);
    margin-bottom: 40px;
    position: relative;
}

.wrap-container .benefits-summary .advantages_content h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: rgb(0,86,155);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.wrap-container .benefits-summary .advantages_description {
    font-size: 18px;
    color: #000000;
    margin-bottom: 40px;
    max-width: 800px;
}

.wrap-container .benefits-summary .advantages_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.wrap-container .benefits-summary .advantage_item {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
    min-width: 200px;
}

.wrap-container .benefits-summary .advantage_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.wrap-container .benefits-summary .advantage_image {
    margin-bottom: 20px;
}

.wrap-container .benefits-summary .advantage_image img, .wrap-container .benefits-summary .advantage_image svg {
    width: 100px;
    height: 100px;
    fill: rgb(128,198,255);
}

.wrap-container .benefits-summary .advantage_item h4 {
    font-size: 23px;
    font-weight: 600;
    color: #000000;
}

@media only screen and (max-width: 1200px) {
    .wrap-container .benefits-summary .advantage_item {
        width: 45%;
    }
}

@media only screen and (max-width: 800px) {
    .wrap-container .benefits-summary .advantages_content h2 {
        font-size: 30px;
    }

    .wrap-container .benefits-summary {
        padding: 50px 20px;
    }

    .wrap-container .benefits-summary .advantage_item {
        width: 100%;
        margin: 10px 0;
    }
}.contact {
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(128,198,255,0.5);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgb(0,86,155,0.5);
    border-radius: 50%;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgb(0,86,155,0.5);
    border-radius: 50%;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h3 {
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contact .form {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact form input,
.contact form textarea {
    color: #000000;
    border-radius: 10px;
    background: rgb(128,198,255,0.5);
    border: 2px solid rgb(128,198,255);
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 12px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: rgb(0,86,155);
}

.contact form .button {
    background: rgb(0,86,155);
    color: #ffffff;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.contact form .button:hover {
    background: rgb(128,198,255);
}

.contact .name_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact .name_holder input {
    width: 100%;
}

.contact .agree {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact .agree label {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.contact .agree a {
    margin-left: 5px;
    color: rgb(128,198,255);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact .agree a:hover {
    color: rgb(0,86,155);
}

.contact .agree input[type=checkbox] {
    margin: 0;
    margin-right: 10px;
    width: auto;
}

.contact .form_text {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 12px;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    .contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact .holder {
        flex-direction: column;
    }

    .contact .holder > div {
        width: 100%;
    }

    .contact .name_holder {
        flex-direction: column;
    }

    .contact .name_holder input {
        width: 100%;
    }

    .contact h3 {
        font-size: 44px;
    }

    .contact form .button {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .contact {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact h3 {
        font-size: 36px;
    }
}.future-students {
    padding-bottom: 80px;
    padding-top: 80px;
}

.future-students .holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.future-students ul {
    list-style: none;
}

.future-students ul li {
    padding-left: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.future-students ul svg, .future-students ul svg path {
    fill: rgb(128,198,255);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    flex-shrink: 0;
}

.future-students h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 800px) {
    .future-students {
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.wrap-container .future-students {
    padding: 100px 0;
    background: rgb(191,226,255);
    color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.wrap-container .future-students .holder {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding: 60px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.wrap-container .future-students ul svg, .wrap-container .future-students ul svg path {
    margin-right: 15px;
    width: 32px;
    height: 32px;
    fill: rgb(128,198,255);
    transition: transform 0.3s ease, fill 0.3s ease;
    position: static;
}

.wrap-container .future-students ul li {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    background: rgb(128,198,255,0.5);
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.wrap-container .future-students ul li:hover {
    background: rgb(128,198,255);
    transform: scale(1.05);
}

.wrap-container .future-students h2 {
    width: 40%;
    padding: 10px;
    font-size: 31px;
    font-weight: 700;
    text-align: left;
    color: rgb(128,198,255);
    border-bottom: 2px solid rgb(128,198,255);
    margin-bottom: 30px;
}

.wrap-container .future-students ul {
    width: 55%;
    padding: 10px;
}

.wrap-container .future-students ul li:hover svg, .wrap-container .future-students ul li:hover svg path {
    fill: #ffffff;
    transform: rotate(20deg);
}

@media only screen and (max-width: 1200px) {
    .wrap-container .future-students .holder {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .wrap-container .future-students h2 {
        width: 100%;
        font-size: 47px;
        text-align: center;
    }

    .wrap-container .future-students ul {
        width: 100%;
    }

    .wrap-container .future-students ul li {
        font-size: 18px;
    }
}

@media only screen and (max-width: 800px) {
    .wrap-container .future-students {
        padding: 40px 0;
    }

    .wrap-container .future-students .holder {
        padding: 20px;
    }

    .wrap-container .future-students h2 {
        font-size: 19px;
    }

    .wrap-container .future-students ul li {
        font-size: 18px;
        padding: 10px 15px;
    }
}.get-support {
    color: #000000;
    background-color: rgb(191,226,255);
    padding: 80px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}
.get-support .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.get-support .contact_holder {
    background: #ffffff;
    border-radius: 23px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.get-support .holder .info_holder div.working_hours {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.get-support .holder .info_holder > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.get-support .holder .info_holder > div > div {
    margin: 5px 0;
}
.get-support h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: rgb(128,198,255);
    position: relative;
}
.get-support h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: rgb(128,198,255);
    left: calc(50% - 40px);
    bottom: -10px;
    border-radius: 10px;
}
.get-support .holder {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 20px;
}
.get-support .contact_description {
    flex: 1 1 100%;
    font-size: 13px;
    line-height: 1.6;
    color: #000000;
    border-left: 4px solid rgb(128,198,255);
    padding-left: 20px;
    position: relative;
}
.get-support .photo {
    flex: 1 1 320px;
    height: 320px;
    border-radius: 23px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: center/cover no-repeat;
}
.get-support .info_holder {
    flex: 2 1 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.get-support .info_holder > div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #000000;
}
.get-support .info_holder svg {
    width: 30px;
    height: 30px;
    fill: rgb(128,198,255);
}
.get-support .info_holder a {
    color: rgb(128,198,255);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.get-support .info_holder a:hover {
    color: rgb(0,86,155);
}
.get-support .holder .info_holder>div span {
    margin-left: 8px;
}
.get-support .contact_politics {
    padding: 20px;
    border-top: 2px solid rgb(128,198,255);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.get-support .contact_politics > div {
    margin-bottom: 20px;
}
.get-support .contact_politics > div h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(128,198,255);
    margin-bottom: 10px;
}
.get-support .contact_politics > div p {
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
}
@media only screen and (max-width: 800px) {
    .get-support .holder {
        flex-direction: column;
    }
    
    .get-support .photo {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    
    .get-support .info_holder {
        flex: 1 1 100%;
    }
    
    .get-support .contact_description {
        padding-left: 10px;
        border-left: none;
    }
}
.greeting-page {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: rgb(191,226,255);
    border-top: 5px solid rgb(128,198,255);
}
.greeting-page .title_page_holder {
    width: 100%;
    min-height: 600px;
    height: auto;

    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}
.greeting-page .title_page_holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.greeting-page .style_element {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 60px;
    border-radius: 23px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    text-align: left;
}
.greeting-page .style_element h1 {
    font-size: 46px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    border-bottom: 3px solid rgb(128,198,255);
    padding-bottom: 12px;
}
.greeting-page .style_element h3 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(0,86,155);
    margin-bottom: 20px;
}
.greeting-page .style_element p {
    font-size: 14px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}
.greeting-page .style_element::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 1px solid rgb(128,198,255);
    border-radius: 23px;
    z-index: -1;
}
.greeting-page .style_element h1 span {
    display: inline-block;
    background: rgb(128,198,255);
    padding: 5px 15px;
    border-radius: 10px;
    color: #ffffff;
    font-style: italic;
}
.greeting-page .style_element h3 span {
    display: inline-block;
    background: rgb(0,86,155);
    padding: 3px 10px;
    border-radius: 10px;
    color: #ffffff;
}

@media only screen and (max-width: 800px) {
    .greeting-page .title_page_holder {
        min-height: 500px;
        padding: 20px;
    }
    .greeting-page .style_element {
        padding: 40px;
        max-width: 100%;
        border-left-width: 5px;
    }
    .greeting-page .style_element::before {
        top: -10px;
        left: -10px;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
    }
    .greeting-page .style_element h1 {
        font-size: 28px;
        margin-bottom: 16px;
        padding-bottom: 8px;
    }
    .greeting-page .style_element h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .greeting-page .style_element p {
        font-size: 17px;
    }
}
.wrap-container .greeting-page {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.wrap-container .greeting-page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(128,198,255,0.5);
    z-index: 0;
    pointer-events: none;
}
.wrap-container .greeting-page .style_element {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin: 40px auto;
    text-align: left;
}
.wrap-container .greeting-page .style_element h1 {
    font-size: 46px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgb(128,198,255);
}
.wrap-container .greeting-page .style_element h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(128,198,255);
    margin-bottom: 12px;
}
.wrap-container .greeting-page .style_element p {
    font-size: 14px;
    color: #000000;
    line-height: 1.8;
}
.wrap-container .greeting-page .style_element h1 span {
    display: inline-block;
    background: rgb(128,198,255);
    padding: 2px 10px;
    border-radius: 10px;
    color: #ffffff;
    font-style: italic;
}
.wrap-container .greeting-page .style_element h3 span {
    display: inline-block;
    background: rgb(0,86,155);
    padding: 2px 8px;
    border-radius: 10px;
    color: #ffffff;
}.modalTrackingConsent {
    position: fixed;
    width: 100%;
    background: rgb(0,86,155);
    bottom: 0;
    z-index: 100;
    padding: 20px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.5);
    font-family: Merriweather, sans-serif;
    border-top: 3px solid rgb(128,198,255);
    animation: slide-up 0.5s ease-out;
}
@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
.cookie_holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.cookie_logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid rgb(128,198,255);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgb(128,198,255,0.5), inset 0 0 10px rgb(0,86,155,0.5);
}
.cookie_logo svg {
    width: 60px;
    height: 60px;
    fill: rgb(128,198,255);
}
.cookie_info {
    flex: 1;
    color: #ffffff;
    padding: 0 20px;
}
.modalTrackingConsent h5 {
    font-size: 18px;
    margin: 0 0 10px;
    color: rgb(128,198,255);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.modalTrackingConsent p {
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
    color: #000000;
}
.cookie_button {
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid rgb(128,198,255);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-left: 10px;
}
.cookie_button.accept {
    border-color: rgb(128,198,255);
    box-shadow: 0 0 10px rgb(128,198,255,0.5);
}
.cookie_button.reject {
    border-color: rgb(0,86,155);
    box-shadow: 0 0 10px rgb(0,86,155,0.5);
}
.cookie_button:hover {
    background: rgb(128,198,255);
    box-shadow: 0 0 20px rgb(128,198,255), inset 0 0 10px rgb(0,86,155,0.5);
}
.modalTrackingConsent p a {
    text-decoration: underline;
    color: rgb(128,198,255);
    transition: color 0.3s ease;
}
.modalTrackingConsent p a:hover {
    color: rgb(0,86,155);
}
@media only screen and (max-width: 1200px) {
    .cookie_holder {
        flex-direction: column;
        align-items: center;
    }
    .cookie_info {
        text-align: center;
        padding: 10px 0;
    }
    .cookie_button {
        margin: 10px 0;
        width: 80%;
    }
}
@media only screen and (max-width: 800px) {
    .cookie_holder {
        flex-direction: column;
        align-items: center;
    }
    .cookie_logo {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    .cookie_logo svg {
        width: 40px;
        height: 40px;
    }
    .modalTrackingConsent h5 {
        font-size: 16px;
    }
    .modalTrackingConsent p {
        font-size: 18px;
    }
    .cookie_button {
        width: 100%;
        padding: 15px;
    }
    .cookie_button.reject {
        background: rgb(128,198,255,0.5);
    }
    .cookie_button:hover {
        background: rgba(0, 0, 0, 0.5);
    }
}
.secure-safehouse {
    padding: 30px;
    width: 100%;
    overflow: hidden;
    height: 100%;
}
.secure-safehouse h1 {
    margin-top: 30px;
    margin-bottom: 20px;
}
.secure-safehouse h2 {
    margin-top: 25px;
    margin-bottom: 15px;
}
.secure-safehouse h3, .secure-safehouse h4, .secure-safehouse h5, .secure-safehouse h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}
.secure-safehouse ul, .secure-safehouse ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 10px 0;
}
.secure-safehouse li {
    margin-bottom: 10px;
}
.secure-safehouse section {
    background: none;
}
.secure-safehouse p, .secure-safehouse span, .secure-safehouse div {
    line-height: 20px;
    margin-bottom: 5px;
}
@media only screen and (max-width: 800px) {
    .secure-safehouse {
        padding: 20px 0;
    }
}header {
    padding-bottom: 10px;
    background: linear-gradient(135deg, rgb(128,198,255), rgb(0,86,155));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.main_header {
    border-top: 5px solid rgb(128,198,255);
    border-bottom: 2px solid rgb(128,198,255);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}
.main_header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}
.main_header .header_holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    position: relative;
    z-index: 1;
}
.main_header .header_holder .logo_holder {
    margin: 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgb(128,198,255);
    border-radius: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgb(128,198,255,0.5);
}
.main_header .header_holder .logo_holder svg, .main_header .header_holder .logo_holder img {
    width: 80px;
    height: 80px;
    fill: rgb(128,198,255);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.main_header .header_holder .logo_holder:hover svg, .main_header .header_holder .logo_holder:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgb(128,198,255,0.5));
}
.main_header .header_description {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 10px;
    flex-grow: 1;
    text-align: center;
    border-left: 2px solid rgb(128,198,255);
    text-shadow: 0 0 10px rgb(128,198,255,0.5);
}
.main_header .header_menu {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    margin-top: 0;
    position: relative;
    z-index: 11;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(0,86,155));
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(128,198,255,0.5);
}
.main_header .header_menu a {
    padding: 10px 16px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    border-right: 2px solid rgb(128,198,255);
    text-shadow: 0 0 10px rgb(128,198,255,0.5);
    display: flex;
    align-items: center;
}
.main_header .header_menu a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(128,198,255);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
    box-shadow: 0 0 10px rgb(128,198,255,0.5);
}
.main_header .header_menu a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}
.main_header .header_menu a:first-child {
    color: rgb(128,198,255);
}
.main_header .header_menu a:last-child {
   border-right: none;
}
@media only screen and (max-width: 1200px) {
    .main_header .header_holder {
        flex-direction: column;
        border-bottom: none;
    }
    .main_header .header_description {
        margin: 10px 0;
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
    .main_header .header_menu {
        justify-content: center;
        flex-direction: column;
        border-radius: 0;
    }
    .main_header .header_menu a {
        margin: 5px 0;
        border-right: none;
        border-bottom: 2px solid rgb(128,198,255);
    }
}