﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    margin: auto;
    width: 1171px;
    max-width: 100%;
}

header,footer {
    width: 100%;
}
.wrapper-container-FEWzI {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
svg {
    width: 30px;
    height: 30px;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}
.main-mainwrap-GOvdB {
    flex: 1 0 auto;
}
.green-edu-bSjta {
    flex: 0 0 auto;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}
.stay-updated-Oznsb {
    position: relative;
    padding: 5rem 2rem;
    background: rgb(242,230,228);
    overflow: hidden;
}

.stay-updated-Oznsb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgb(225,199,195,0.5) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgb(202,163,158,0.5) 0%, transparent 35%);
    opacity: 0.5;
}

.stay-updated-Oznsb .founder-vision-bKDIe {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.stay-updated-Oznsb .request-feedback-hpFIS {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    background: #ffffff;
    border-radius: 13px;
}

.stay-updated-Oznsb .request-feedback-hpFIS::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgb(225,199,195);
    opacity: 0.2;
    animation: moveBlob1 20s infinite alternate ease-in-out;
}

.stay-updated-Oznsb .request-feedback-hpFIS::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgb(202,163,158);
    opacity: 0.2;
    animation: moveBlob2 15s infinite alternate ease-in-out;
}

@keyframes moveBlob1 {
    0%, 100% {
        border-radius: 50%;
        transform: translate(0, 0) scale(1);
    }
    33% {
        border-radius: 60% 40% 70% 30% / 40% 50% 50% 60%;
        transform: translate(20px, 10px) scale(1.2);
    }
    66% {
        border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
        transform: translate(-10px, 20px) scale(0.8);
    }
}

@keyframes moveBlob2 {
    0%, 100% {
        border-radius: 50%;
        transform: translate(0, 0) scale(1);
    }
    33% {
        border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
        transform: translate(-20px, -10px) scale(1.1);
    }
    66% {
        border-radius: 70% 30% 60% 40% / 40% 70% 30% 60%;
        transform: translate(15px, -20px) scale(0.9);
    }
}

.stay-updated-Oznsb h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2.5rem;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-bottom: 15px;
}

.stay-updated-Oznsb h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgb(225,199,195) 50%,
        transparent 100%
    );
    animation: waveMotion 3s infinite ease-in-out;
}

@keyframes waveMotion {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.stay-updated-Oznsb .input_holder {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stay-updated-Oznsb input[type="email"] {
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: rgb(242,230,228);
    font-family: Ubuntu, sans-serif;
    font-size: 14px;
    color: #000000;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.stay-updated-Oznsb input[type="email"]:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgb(225,199,195,0.5);
}

.stay-updated-Oznsb input[type="email"]::placeholder {
    color: #000000;
    opacity: 0.6;
}

.stay-updated-Oznsb input[type="submit"] {
    align-self: center;
    min-width: 180px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, rgb(225,199,195) 0%, rgb(202,163,158) 100%);
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stay-updated-Oznsb input[type="submit"]::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgb(202,163,158) 0%, rgb(225,199,195) 100%);
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scale(0.95);
}

.stay-updated-Oznsb input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.stay-updated-Oznsb input[type="submit"]:hover::before {
    opacity: 1;
    animation: rotateGradient 2s infinite linear;
}

@keyframes rotateGradient {
    0% {
        transform: scale(0.95) rotate(0deg);
    }
    100% {
        transform: scale(0.95) rotate(360deg);
    }
}

.stay-updated-Oznsb .input_holder::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(225,199,195,0.5);
    border-radius: 50%;
    top: 15%;
    right: 5%;
    opacity: 0.3;
    animation: floatBubble 6s infinite alternate ease-in-out;
}

.stay-updated-Oznsb .input_holder::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgb(202,163,158,0.5);
    border-radius: 50%;
    bottom: 15%;
    left: 5%;
    opacity: 0.3;
    animation: floatBubble 8s infinite alternate-reverse ease-in-out;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(10px, -10px);
    }
    66% {
        transform: translate(-10px, 10px);
    }
}

@media (max-width: 768px) {
    .stay-updated-Oznsb {
        padding: 4rem 1.5rem;
    }
    
    .stay-updated-Oznsb .request-feedback-hpFIS {
        padding: 2.5rem 2rem;
    }
    
    .stay-updated-Oznsb .request-feedback-hpFIS::before,
    .stay-updated-Oznsb .request-feedback-hpFIS::after {
        display: none;
    }
    
    .stay-updated-Oznsb h3 {
        font-size: calc(22px * 0.9);
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .stay-updated-Oznsb {
        padding: 3rem 1rem;
    }
    
    .stay-updated-Oznsb .request-feedback-hpFIS {
        padding: 2rem 1.5rem;
    }
    
    .stay-updated-Oznsb h3 {
        font-size: calc(22px * 0.8);
        margin-bottom: 1.5rem;
    }
    
    .stay-updated-Oznsb input[type="email"] {
        padding: 1rem;
    }
    
    .stay-updated-Oznsb input[type="submit"] {
        min-width: 100%;
        padding: 0.8rem 1.5rem;
    }
}.find-contact-bhGQz {
    color: #000000;
    background-color: #ffffff;
    padding: 64px 0;
    font-family: Ubuntu, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.find-contact-bhGQz h2 {
    text-align: center;
    width: 100%;
    margin: 24px 0;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.find-contact-bhGQz .founder-vision-bKDIe .edu-query-nClIv div.message-block-JxdUe {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.find-contact-bhGQz .founder-vision-bKDIe .edu-query-nClIv > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.find-contact-bhGQz .founder-vision-bKDIe .edu-query-nClIv > div > div {
    margin: 5px 0;
}
.find-contact-bhGQz .msg-form-NCtxK {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin: 16px 0;
    width: 100%;
    color: rgba(0, 0, 0, 0.5);
}
.find-contact-bhGQz .edu-query-nClIv svg {
    width: 28px;
    height: 28px;
    fill: rgb(202,163,158);
    margin-right: 12px;
    transition: fill 0.3s ease;
}
.find-contact-bhGQz .edu-query-nClIv svg:hover {
    fill: rgb(225,199,195);
}
.find-contact-bhGQz .founder-vision-bKDIe {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 24px 0;
    border-radius: 27px;
}
.find-contact-bhGQz .founder-vision-bKDIe .snapshot-ceopL {
    width: 50%;
    order: 2;
    flex-shrink: 0;
    border-radius: 0 27px 27px 0;
    position: relative;
    overflow: hidden;
}
.find-contact-bhGQz .founder-vision-bKDIe .info_holder>div span {
    margin-left: 8px;
}
.find-contact-bhGQz .founder-vision-bKDIe .snapshot-ceopL img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.find-contact-bhGQz .founder-vision-bKDIe .snapshot-ceopL:hover img {
    transform: scale(1.1);
}
.find-contact-bhGQz .founder-vision-bKDIe .edu-query-nClIv {
    font-size: 16px;
    line-height: 1.6;
    width: 50%;
    order: 1;
    flex-shrink: 0;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 27px 0 0 27px;
    background: #ffffff;
}
.find-contact-bhGQz .founder-vision-bKDIe .info_holder>div {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}
.find-contact-bhGQz .founder-vision-bKDIe .info_holder>div:hover {
    color: rgb(225,199,195);
}
.find-contact-bhGQz .edu-reach-giyML {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}
.find-contact-bhGQz .contact_politics>div {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.find-contact-bhGQz .contact_politics>div h4 {
    margin: 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media only screen and (max-width: 800px) {
    .find-contact-bhGQz .founder-vision-bKDIe .edu-query-nClIv {
        width: 100%;
        border-radius: 27px 27px 0 0;
        align-items: center;
        padding: 24px;
    }
    .find-contact-bhGQz .founder-vision-bKDIe .snapshot-ceopL {
        width: 100%;
        height: 250px;
        border-radius: 0 0 27px 27px;
    }
}
.confidential-armory-IkhCQ {
    background-color: rgb(242,230,228);
    color: #000000;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.confidential-armory-IkhCQ h1 {
    font-family: Ubuntu, sans-serif;
    font-size: 47px;
    color: rgb(225,199,195);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid rgb(225,199,195,0.5);
    padding-bottom: 10px;
}
.confidential-armory-IkhCQ h2 {
    font-family: Ubuntu, sans-serif;
    font-size: 38px;
    color: rgb(202,163,158);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
    border-left: 4px solid rgb(202,163,158,0.5);
    padding-left: 10px;
}
.confidential-armory-IkhCQ h3,
.confidential-armory-IkhCQ h4,
.confidential-armory-IkhCQ h5,
.confidential-armory-IkhCQ h6 {
    font-family: Ubuntu, sans-serif;
    color: #000000;
    font-weight: 400;
    margin-bottom: 10px;
}
.confidential-armory-IkhCQ ul,
.confidential-armory-IkhCQ ol {
    margin-left: 20px;
    list-style-position: inside;
}
.confidential-armory-IkhCQ li {
    margin-bottom: 10px;
    font-size: 12px;
}
.confidential-armory-IkhCQ section {
    margin-top: 30px;
    padding: 20px;
    background-color: rgb(242,230,228);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.confidential-armory-IkhCQ p {
    font-family: Ubuntu, sans-serif;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.confidential-armory-IkhCQ span {
    font-weight: 600;
    color: rgb(225,199,195);
}
.confidential-armory-IkhCQ div {
    margin-bottom: 20px;
}
.confidential-armory-IkhCQ a {
    color: rgb(225,199,195);
    text-decoration: none;
    border-bottom: 1px solid rgb(225,199,195,0.5);
    transition: color 0.3s, border-color 0.3s;
}
.confidential-armory-IkhCQ a:hover {
    color: rgb(202,163,158);
    border-color: rgb(202,163,158,0.5);
}
.confidential-armory-IkhCQ button {
    background-color: rgb(225,199,195);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.confidential-armory-IkhCQ button:hover {
    background-color: rgb(202,163,158);
    transform: scale(1.05);
}
@media only screen and (max-width: 800px) {
    .confidential-armory-IkhCQ {
        padding: 20px;
    }
    .confidential-armory-IkhCQ h1 {
        font-size: calc(20px - 4px);
    }
    .confidential-armory-IkhCQ h2 {
        font-size: calc(20px - 4px);
    }
    .confidential-armory-IkhCQ p {
        font-size: calc(12px - 2px);
    }
    .confidential-armory-IkhCQ button {
        padding: 8px 16px;
        font-size: calc(15px - 2px);
    }
}.welcome-LauMt {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgb(225,199,195);
}

.welcome-LauMt .founder-vision-bKDIe {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.welcome-LauMt .main-title-HCXmb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.welcome-LauMt .main-title-HCXmb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgb(225,199,195,0.5) 0%,
        transparent 50%,
        rgb(225,199,195,0.5) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.welcome-LauMt .main-title-HCXmb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 40%,
        rgb(202,163,158) 100%
    );
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
}

.welcome-LauMt .fast-school-KAFJD {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 100%;
    width: 100%;
    animation: grid-shuffle 25s ease-in-out infinite;
}

.welcome-LauMt .edu-first-IlctJ {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 1;
}

.welcome-LauMt .edu-first-IlctJ:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
    animation: scale-up 25s infinite ease-in-out;
}

.welcome-LauMt .edu-first-IlctJ:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
    animation: scale-down 25s infinite ease-in-out;
    animation-delay: 6.25s;
}

.welcome-LauMt .edu-first-IlctJ:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
    animation: scale-up 25s infinite ease-in-out;
    animation-delay: 12.5s;
}

.welcome-LauMt .edu-first-IlctJ:nth-child(4) {
    grid-area: 2 / 2 / 3 / 3;
    animation: scale-down 25s infinite ease-in-out;
    animation-delay: 18.75s;
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(1):nth-last-child(1)) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(1):nth-last-child(1)) .edu-first-IlctJ:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(2):nth-last-child(1)) {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(2):nth-last-child(1)) .edu-first-IlctJ:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(2):nth-last-child(1)) .edu-first-IlctJ:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(3):nth-last-child(1)) {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(3):nth-last-child(1)) .edu-first-IlctJ:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(3):nth-last-child(1)) .edu-first-IlctJ:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.welcome-LauMt .fast-school-KAFJD:has(.edu-first-IlctJ:nth-child(3):nth-last-child(1)) .edu-first-IlctJ:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
}

.welcome-LauMt .edu-first-IlctJ img {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: cover;
    margin: -10px;
    filter: grayscale(30%) brightness(0.8);
    transition: all 0.5s ease;
}

.welcome-LauMt .edu-first-IlctJ::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgb(225,199,195,0.5),
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    mix-blend-mode: overlay;
}

.welcome-LauMt .edu-first-IlctJ:nth-child(even)::before {
    background: linear-gradient(
        rgb(202,163,158,0.5),
        transparent
    );
}

.welcome-LauMt .carousel-auto-slide.active::before {
    opacity: 0.6;
}

.welcome-LauMt .content-wrap-MLpCl {
    position: absolute;
    z-index: 5;
    width: 70%;
    max-width: 800px;
    text-align: center;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.welcome-LauMt .content-wrap-MLpCl::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    border-radius: 10px;
}

.welcome-LauMt .content-wrap-MLpCl::after {
    content: "";
    position: absolute;
    inset: -5px;
    background-image: 
        linear-gradient(90deg, transparent 30%, rgb(225,199,195) 50%, transparent 70%),
        linear-gradient(180deg, transparent 30%, rgb(202,163,158) 50%, transparent 70%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: border-light 5s linear infinite;
    z-index: -2;
    border-radius: 10px;
    filter: blur(8px);
    opacity: 0.5;
}

.welcome-LauMt .content-wrap-MLpCl h2 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.welcome-LauMt .content-wrap-MLpCl h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgb(225,199,195), rgb(202,163,158));
    margin: 15px auto 0;
}

.welcome-LauMt .content-wrap-MLpCl p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.welcome-LauMt .content-wrap-MLpCl .message-reach-KRjQV {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgb(225,199,195);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.welcome-LauMt .content-wrap-MLpCl .message-reach-KRjQV::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgb(225,199,195),
        rgb(202,163,158),
        rgb(225,199,195)
    );
    background-size: 200% 100%;
    background-position: 0% 0%;
    z-index: -1;
    transition: all 0.5s ease;
}

.welcome-LauMt .content-wrap-MLpCl .message-reach-KRjQV:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.welcome-LauMt .content-wrap-MLpCl .message-reach-KRjQV:hover::before {
    background-position: 100% 0%;
}

@keyframes grid-shuffle {
    0%, 20% {
        transform: rotate(0deg) scale(1.1);
    }
    25%, 45% {
        transform: rotate(5deg) scale(1.15);
    }
    50%, 70% {
        transform: rotate(0deg) scale(1.2);
    }
    75%, 95% {
        transform: rotate(-5deg) scale(1.15);
    }
    100% {
        transform: rotate(0deg) scale(1.1);
    }
}

@keyframes scale-up {
    0%, 5%, 25%, 30%, 50%, 55%, 75%, 80%, 100% {
        opacity: 0.4;
    }
    10%, 15%, 20%, 35%, 40%, 45%, 60%, 65%, 70%, 85%, 90%, 95% {
        opacity: 1;
    }
}

@keyframes scale-down {
    0%, 5%, 25%, 30%, 50%, 55%, 75%, 80%, 100% {
        opacity: 1;
    }
    10%, 15%, 20%, 35%, 40%, 45%, 60%, 65%, 70%, 85%, 90%, 95% {
        opacity: 0.4;
    }
}

@keyframes border-light {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@media (max-width: 992px) {
    .welcome-LauMt .content-wrap-MLpCl {
        width: 80%;
        padding: 2.5rem;
    }
    
    .welcome-LauMt .content-wrap-MLpCl h2 {
        font-size: calc(44px * 0.85);
    }
    
    .welcome-LauMt .content-wrap-MLpCl p {
        font-size: calc(16px * 0.95);
    }
}

@media (max-width: 768px) {
    .welcome-LauMt .content-wrap-MLpCl {
        width: 85%;
        padding: 2rem;
    }
    
    .welcome-LauMt .content-wrap-MLpCl h2 {
        font-size: calc(44px * 0.7);
        margin-bottom: 1.2rem;
    }
    
    .welcome-LauMt .content-wrap-MLpCl h2::after {
        width: 60px;
        margin: 10px auto 0;
    }
    
    .welcome-LauMt .content-wrap-MLpCl p {
        font-size: calc(16px * 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .welcome-LauMt .content-wrap-MLpCl .message-reach-KRjQV {
        padding: 0.8rem 2rem;
    }
    
    @keyframes grid-shuffle {
        0%, 20% {
            transform: rotate(0deg) scale(1.05);
        }
        25%, 45% {
            transform: rotate(3deg) scale(1.1);
        }
        50%, 70% {
            transform: rotate(0deg) scale(1.15);
        }
        75%, 95% {
            transform: rotate(-3deg) scale(1.1);
        }
        100% {
            transform: rotate(0deg) scale(1.05);
        }
    }
}

@media (max-width: 576px) {
    .welcome-LauMt .content-wrap-MLpCl {
        width: 90%;
        padding: 1.5rem;
    }
    
    .welcome-LauMt .content-wrap-MLpCl h2 {
        font-size: calc(44px * 0.6);
        margin-bottom: 1rem;
    }
    
    .welcome-LauMt .content-wrap-MLpCl h2::after {
        width: 50px;
        margin: 8px auto 0;
    }
    
    .welcome-LauMt .content-wrap-MLpCl p {
        font-size: calc(16px * 0.85);
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .welcome-LauMt .content-wrap-MLpCl .message-reach-KRjQV {
        padding: 0.7rem 1.7rem;
        font-size: calc(17px * 0.9);
    }
    
    @keyframes grid-shuffle {
        0%, 20% {
            transform: rotate(0deg) scale(1.03);
        }
        25%, 45% {
            transform: rotate(2deg) scale(1.06);
        }
        50%, 70% {
            transform: rotate(0deg) scale(1.09);
        }
        75%, 95% {
            transform: rotate(-2deg) scale(1.06);
        }
        100% {
            transform: rotate(0deg) scale(1.03);
        }
    }
}.ideal-participants-USxeZ {
    position: relative;
    padding: 120px 0 100px;
    background: rgb(242,230,228);
    overflow: hidden;
}

.ideal-participants-USxeZ::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgb(225,199,195,0.5);
    transform: rotate(35deg);
    z-index: 1;
}

.ideal-participants-USxeZ::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgb(202,163,158,0.5);
    transform: rotate(-35deg);
    z-index: 1;
}

.ideal-participants-USxeZ .container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.ideal-participants-USxeZ .founder-vision-bKDIe {
    position: relative;
    background: #ffffff;
    border-radius: 19px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.ideal-participants-USxeZ .founder-vision-bKDIe::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgb(225,199,195), rgb(202,163,158));
}

.ideal-participants-USxeZ .founder-vision-bKDIe::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border: 2px solid rgb(225,199,195,0.5);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.ideal-participants-USxeZ h4 {
    color: #000000;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.ideal-participants-USxeZ h4::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 40px;
    height: 4px;
    background: rgb(225,199,195);
    transform: translateX(-50%);
    border-radius: 10px;
}

.ideal-participants-USxeZ h4::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: rgb(202,163,158,0.5);
    transform: translateX(-20px);
    border-radius: 10px;
}

.ideal-participants-USxeZ div > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.ideal-participants-USxeZ div > div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(202,163,158,0.5) 20%, 
        rgb(202,163,158,0.5) 80%, 
        transparent 100%);
    opacity: 0.5;
    z-index: -1;
}

.ideal-participants-USxeZ p {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #000000;
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.ideal-participants-USxeZ p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, rgb(242,230,228) 100%);
    border-radius: 10px;
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.ideal-participants-USxeZ p:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgb(225,199,195,0.5);
}

.ideal-participants-USxeZ p:hover::before {
    opacity: 1;
}

.ideal-participants-USxeZ p svg {
    width: 28px;
    height: 28px;
    margin-right: 18px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ideal-participants-USxeZ p svg path {
    fill: rgb(225,199,195);
    transition: fill 0.3s ease;
}

.ideal-participants-USxeZ p:hover svg {
    transform: rotate(10deg) scale(1.2);
}

.ideal-participants-USxeZ p:hover svg path {
    fill: rgb(202,163,158);
}

@keyframes dotAnimation {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.5);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.ideal-participants-USxeZ .founder-vision-bKDIe::before {
    animation: dotAnimation 8s infinite;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ideal-participants-USxeZ .founder-vision-bKDIe > div p {
    animation: fadeSlideIn 0.6s ease forwards;
    opacity: 0;
}

.ideal-participants-USxeZ .founder-vision-bKDIe > div p:nth-child(1) { animation-delay: 0.1s; }
.ideal-participants-USxeZ .founder-vision-bKDIe > div p:nth-child(2) { animation-delay: 0.3s; }
.ideal-participants-USxeZ .founder-vision-bKDIe > div p:nth-child(3) { animation-delay: 0.5s; }
.ideal-participants-USxeZ .founder-vision-bKDIe > div p:nth-child(4) { animation-delay: 0.7s; }
.ideal-participants-USxeZ .founder-vision-bKDIe > div p:nth-child(5) { animation-delay: 0.9s; }
.ideal-participants-USxeZ .founder-vision-bKDIe > div p:nth-child(6) { animation-delay: 1.1s; }

.ideal-participants-USxeZ p::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgb(202,163,158,0.5);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.ideal-participants-USxeZ p:hover::after {
    opacity: 0.3;
    transform: scale(2);
}

@media (max-width: 991px) {
    .ideal-participants-USxeZ {
        padding: 90px 0 80px;
    }
    
    .ideal-participants-USxeZ .founder-vision-bKDIe {
        padding: 50px 30px;
    }
    
    .ideal-participants-USxeZ h4 {
        font-size: calc(31px * 0.9);
        margin-bottom: 40px;
    }
    
    .ideal-participants-USxeZ div > div {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .ideal-participants-USxeZ p {
        padding: 20px;
    }
    
    .ideal-participants-USxeZ .founder-vision-bKDIe::after {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .ideal-participants-USxeZ {
        padding: 80px 0 70px;
    }
    
    .ideal-participants-USxeZ .founder-vision-bKDIe {
        padding: 40px 25px;
    }
    
    .ideal-participants-USxeZ h4 {
        font-size: calc(31px * 0.8);
        margin-bottom: 35px;
    }
    
    .ideal-participants-USxeZ div > div {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ideal-participants-USxeZ div > div::before {
        display: none;
    }
    
    .ideal-participants-USxeZ p {
        padding: 18px;
    }
    
    .ideal-participants-USxeZ p svg {
        width: 24px;
        height: 24px;
        margin-right: 15px;
    }
    
    .ideal-participants-USxeZ .founder-vision-bKDIe::after {
        top: auto;
        right: auto;
        bottom: 20px;
        left: 20px;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .ideal-participants-USxeZ {
        padding: 60px 0 50px;
    }
    
    .ideal-participants-USxeZ .founder-vision-bKDIe {
        padding: 35px 20px;
    }
    
    .ideal-participants-USxeZ h4 {
        font-size: calc(31px * 0.7);
        margin-bottom: 30px;
    }
    
    .ideal-participants-USxeZ h4::before {
        width: 30px;
        height: 3px;
    }
    
    .ideal-participants-USxeZ h4::after {
        width: 60px;
        height: 3px;
    }
    
    .ideal-participants-USxeZ p {
        padding: 15px;
        font-size: calc(14px * 0.9);
    }
    
    .ideal-participants-USxeZ p svg {
        width: 20px;
        height: 20px;
        margin-right: 12px;
    }
    
    .ideal-participants-USxeZ p:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .ideal-participants-USxeZ .founder-vision-bKDIe::after {
        width: 60px;
        height: 60px;
    }
}.course-description-utTNI {
    position: relative;
    overflow: hidden;
    background-color: rgb(242,230,228);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.course-description-utTNI .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.course-description-utTNI .founder-vision-bKDIe {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: center;
}

.course-description-utTNI .skill-work-FxMUw {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.course-description-utTNI .skill-work-FxMUw::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgb(225,199,195);
    opacity: 0.1;
    border-radius: 50%;
    top: -50px;
    left: -30px;
    z-index: -1;
}

.course-description-utTNI .skill-work-FxMUw::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgb(202,163,158);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -30px;
    right: -20px;
    z-index: -1;
}

.course-description-utTNI .skill-work-FxMUw h3 {
    font-size: 47px;
    color: rgb(225,199,195);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.course-description-utTNI .skill-work-FxMUw h3::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: rgb(225,199,195);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.course-description-utTNI .skill-work-FxMUw p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #000000;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.course-description-utTNI .skill-work-FxMUw .message-reach-KRjQV {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgb(225,199,195);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.course-description-utTNI .skill-work-FxMUw .message-reach-KRjQV::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(202,163,158);
    transition: transform 0.4s ease;
    transform: translateY(100%);
    z-index: -1;
    border-radius: 50px;
}

.course-description-utTNI .skill-work-FxMUw .message-reach-KRjQV:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.course-description-utTNI .skill-work-FxMUw .message-reach-KRjQV:hover::before {
    transform: translateY(0);
}

.course-description-utTNI .career-progress-fXQvk {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.course-description-utTNI .career-progress-fXQvk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                transparent 40%,
                transparent 60%,
                rgba(0, 0, 0, 0.4) 100%);
    z-index: 5;
    pointer-events: none;
}

.course-description-utTNI .education-guide-WjyQO {
    width: 500%;
    height: 100%;
    display: flex;
    animation: carousel-slide 25s ease-in-out infinite;
}

.course-description-utTNI .career-progress-fXQvk:hover .education-guide-WjyQO {
    animation-play-state: paused;
}

.course-description-utTNI .class-route-KADdc {
    width: 20%;
    height: 100%;
    position: relative;
}

.course-description-utTNI .class-route-KADdc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-description-utTNI .class-route-KADdc:hover img {
    transform: scale(1.05);
}

.course-description-utTNI .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.course-description-utTNI .carousel-indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.course-description-utTNI .carousel-indicator.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

.course-description-utTNI .course-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.course-description-utTNI .feature-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-description-utTNI .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-description-utTNI .feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(rgb(225,199,195), 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
}

.course-description-utTNI .feature-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgb(225,199,195);
    transform: rotate(45deg);
}

.course-description-utTNI .feature-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
}

.course-description-utTNI .feature-title {
    font-size: 21px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.course-description-utTNI .feature-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.course-description-utTNI .wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg,
                transparent 25%, rgb(242,230,228) 25%,
                rgb(242,230,228) 50%, transparent 50%,
                transparent 75%, rgb(242,230,228) 75%);
    background-size: 60px 60px;
    opacity: 0.04;
    z-index: 2;
    pointer-events: none;
}

@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-20%);
    }
    45% {
        transform: translateX(-20%);
    }
    50% {
        transform: translateX(-40%);
    }
    70% {
        transform: translateX(-40%);
    }
    75% {
        transform: translateX(-60%);
    }
    95% {
        transform: translateX(-60%);
    }
    100% {
        transform: translateX(-80%);
    }
}

@media (max-width: 991px) {
    .course-description-utTNI .career-progress-fXQvk {
        height: 350px;
    }
    
    .course-description-utTNI .skill-work-FxMUw h3 {
        font-size: calc(47px * 0.9);
    }
    
    .course-description-utTNI .feature-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .course-description-utTNI .container {
        padding: 3rem 1.5rem;
    }
    
    .course-description-utTNI .career-progress-fXQvk {
        height: 300px;
        margin-top: 2rem;
    }
    
    .course-description-utTNI .skill-work-FxMUw h3 {
        font-size: calc(47px * 0.8);
    }

    .course-description-utTNI .course-features {
        gap: 20px;
        margin-top: 3rem;
    }
    
    .course-description-utTNI .feature-item {
        padding: 20px;
        min-width: 100%;
    }
    
    .course-description-utTNI .education-guide-WjyQO {
        width: 600%;
        animation-duration: 20s;
    }
    
    .course-description-utTNI .class-route-KADdc {
        width: 16.6667%;
    }
    
    @keyframes carousel-slide {
        0%, 12% {
            transform: translateX(0);
        }
        16%, 28% {
            transform: translateX(-16.6667%);
        }
        32%, 44% {
            transform: translateX(-33.3334%);
        }
        48%, 60% {
            transform: translateX(-50%);
        }
        64%, 76% {
            transform: translateX(-66.6667%);
        }
        80%, 92% {
            transform: translateX(-83.3334%);
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 480px) {
    .course-description-utTNI .career-progress-fXQvk {
        height: 250px;
    }
    
    .course-description-utTNI .skill-work-FxMUw .message-reach-KRjQV {
        padding: 0.8rem 2rem;
    }
    
    .course-description-utTNI .feature-icon {
        width: 50px;
        height: 50px;
    }
}.about-this-UWEnw {
    position: relative;
    background: rgb(242,230,228);
    padding: 110px 0;
    overflow: hidden;
}

.about-this-UWEnw::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgb(225,199,195,0.5) 0%, transparent 75%);
    z-index: 1;
}

.about-this-UWEnw .container {
    position: relative;
    z-index: 2;
}

.about-this-UWEnw .founder-vision-bKDIe {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
}

.about-this-UWEnw h3 {
    grid-column: 1 / -1;
    font-size: 47px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.about-this-UWEnw h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60%;
    height: 5px;
    background: rgb(225,199,195);
}

.about-this-UWEnw .skill-training-qQGus {
    grid-column: 1 / 7;
    position: relative;
    z-index: 1;
}

.about-this-UWEnw .how-grow-AULas {
    grid-column: 7 / -1;
    position: relative;
    z-index: 1;
}

.about-this-UWEnw .skill-training-qQGus span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: rgb(225,199,195);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-this-UWEnw .skill-training-qQGus p,
.about-this-UWEnw .how-grow-AULas p {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 30px;
    padding-right: 20px;
}

.about-this-UWEnw .snapshot-ceopL,
.about-this-UWEnw .edu-ethos-iqZIz {
    height: 360px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    box-shadow: 15px 15px 0 rgb(225,199,195,0.5);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-this-UWEnw .edu-ethos-iqZIz {
    box-shadow: 15px 15px 0 rgb(202,163,158,0.5);
}

.about-this-UWEnw .snapshot-ceopL:hover,
.about-this-UWEnw .edu-ethos-iqZIz:hover {
    transform: translateY(-10px);
    box-shadow: 20px 20px 0 rgb(225,199,195,0.5);
}

.about-this-UWEnw .edu-ethos-iqZIz:hover {
    box-shadow: 20px 20px 0 rgb(202,163,158,0.5);
}

.about-this-UWEnw .skill-training-qQGus,
.about-this-UWEnw .how-grow-AULas {
    position: relative;
}

.about-this-UWEnw .skill-training-qQGus::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: repeating-linear-gradient(
        45deg,
        rgb(225,199,195,0.5),
        rgb(225,199,195,0.5) 5px,
        transparent 5px,
        transparent 10px
    );
    z-index: -1;
}

.about-this-UWEnw .how-grow-AULas::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: repeating-linear-gradient(
        -45deg,
        rgb(202,163,158,0.5),
        rgb(202,163,158,0.5) 5px,
        transparent 5px,
        transparent 10px
    );
    z-index: -1;
}

.about-this-UWEnw .snapshot-ceopL::after,
.about-this-UWEnw .edu-ethos-iqZIz::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5));
}

.about-this-UWEnw .snapshot-ceopL::before,
.about-this-UWEnw .edu-ethos-iqZIz::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
    transition: all 0.6s;
    transform: skewX(-25deg);
}

.about-this-UWEnw .snapshot-ceopL:hover::before,
.about-this-UWEnw .edu-ethos-iqZIz:hover::before {
    left: 100%;
}

.about-this-UWEnw .founder-vision-bKDIe::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed rgb(225,199,195,0.5);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: -1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .about-this-UWEnw {
        padding: 90px 0;
    }
    
    .about-this-UWEnw h3 {
        margin-bottom: 50px;
    }
    
    .about-this-UWEnw .snapshot-ceopL,
    .about-this-UWEnw .edu-ethos-iqZIz {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .about-this-UWEnw .founder-vision-bKDIe {
        grid-template-columns: 1fr;
    }
    
    .about-this-UWEnw .skill-training-qQGus,
    .about-this-UWEnw .how-grow-AULas {
        grid-column: 1 / -1;
        margin-bottom: 50px;
    }
    
    .about-this-UWEnw .how-grow-AULas {
        margin-bottom: 0;
    }
    
    .about-this-UWEnw h3 {
        margin-bottom: 40px;
    }
    
    .about-this-UWEnw .snapshot-ceopL,
    .about-this-UWEnw .edu-ethos-iqZIz {
        height: 400px;
    }
    
    .about-this-UWEnw .skill-training-qQGus p,
    .about-this-UWEnw .how-grow-AULas p {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .about-this-UWEnw {
        padding: 70px 0;
    }
    
    .about-this-UWEnw h3 {
        font-size: calc(47px * 0.8);
        margin-bottom: 35px;
    }
    
    .about-this-UWEnw .skill-training-qQGus,
    .about-this-UWEnw .how-grow-AULas {
        margin-bottom: 40px;
    }
    
    .about-this-UWEnw .snapshot-ceopL,
    .about-this-UWEnw .edu-ethos-iqZIz {
        height: 350px;
        box-shadow: 10px 10px 0 rgb(225,199,195,0.5);
    }
    
    .about-this-UWEnw .edu-ethos-iqZIz {
        box-shadow: 10px 10px 0 rgb(202,163,158,0.5);
    }
    
    .about-this-UWEnw .snapshot-ceopL:hover,
    .about-this-UWEnw .edu-ethos-iqZIz:hover {
        box-shadow: 15px 15px 0 rgb(225,199,195,0.5);
    }
    
    .about-this-UWEnw .edu-ethos-iqZIz:hover {
        box-shadow: 15px 15px 0 rgb(202,163,158,0.5);
    }
}

@media (max-width: 576px) {
    .about-this-UWEnw {
        padding: 50px 0;
    }
    
    .about-this-UWEnw h3 {
        font-size: calc(47px * 0.7);
        margin-bottom: 30px;
    }
    
    .about-this-UWEnw h3::after {
        width: 50%;
        height: 4px;
        bottom: -10px;
    }
    
    .about-this-UWEnw .skill-training-qQGus span {
        font-size: calc(22px * 0.9);
        margin-bottom: 15px;
    }
    
    .about-this-UWEnw .skill-training-qQGus p,
    .about-this-UWEnw .how-grow-AULas p {
        font-size: calc(14px * 0.95);
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .about-this-UWEnw .snapshot-ceopL,
    .about-this-UWEnw .edu-ethos-iqZIz {
        height: 280px;
        box-shadow: 8px 8px 0 rgb(225,199,195,0.5);
    }
    
    .about-this-UWEnw .edu-ethos-iqZIz {
        box-shadow: 8px 8px 0 rgb(202,163,158,0.5);
    }
    
    .about-this-UWEnw .snapshot-ceopL:hover,
    .about-this-UWEnw .edu-ethos-iqZIz:hover {
        box-shadow: 10px 10px 0 rgb(225,199,195,0.5);
    }
    
    .about-this-UWEnw .edu-ethos-iqZIz:hover {
        box-shadow: 10px 10px 0 rgb(202,163,158,0.5);
    }
    
    .about-this-UWEnw .skill-training-qQGus::before,
    .about-this-UWEnw .how-grow-AULas::before {
        width: 80px;
        height: 80px;
    }
}

.about-this-UWEnw .how-grow-AULas p {
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.about-this-UWEnw .how-grow-AULas p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: rgb(202,163,158);
}.benefits-YBEKH {
    position: relative;
    background: linear-gradient(135deg, rgb(242,230,228) 0%, rgb(225,199,195,0.5) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.benefits-YBEKH::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgb(202,163,158,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    transform: rotate(-5deg) scale(1.2);
    z-index: 0;
}

.benefits-YBEKH h3 {
    font-family: Ubuntu, sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    transform: skewX(-5deg);
    position: relative;
    padding-left: 2rem;
}

.benefits-YBEKH h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 70%;
    background: linear-gradient(to bottom, rgb(225,199,195), rgb(202,163,158));
    transform: translateY(-50%);
    border-radius: 10px;
}

.benefits-YBEKH .learning-pros-eRkzb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    transform: perspective(1000px) rotateX(2deg);
}

.benefits-YBEKH .learning-pluses-JIiYh {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
    transform: translateY(0) rotate(0);
}

.benefits-YBEKH .learning-pluses-JIiYh:nth-child(odd) {
    transform: translateY(20px) rotate(-1deg);
}

.benefits-YBEKH .learning-pluses-JIiYh:nth-child(even) {
    transform: translateY(-20px) rotate(1deg);
}

.benefits-YBEKH .learning-pluses-JIiYh::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgb(202,163,158,0.5) 50%);
    z-index: -1;
    transition: all 0.4s ease;
}

.benefits-YBEKH .learning-pluses-JIiYh:hover {
    transform: translateY(-10px) scale(1.03) rotate(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefits-YBEKH .learning-pluses-JIiYh:hover::before {
    width: 120px;
    height: 120px;
}

.benefits-YBEKH .learning-pluses-JIiYh svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 10px rgb(225,199,195,0.5));
    transition: all 0.4s ease;
}

.benefits-YBEKH .learning-pluses-JIiYh:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.benefits-YBEKH .learning-pluses-JIiYh svg path {
    fill: rgb(225,199,195);
    transition: all 0.4s ease;
}

.benefits-YBEKH .learning-pluses-JIiYh:hover svg path {
    fill: rgb(202,163,158);
}

.benefits-YBEKH .learning-pluses-JIiYh span {
    font-family: Ubuntu, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.benefits-YBEKH .learning-pluses-JIiYh span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, rgb(225,199,195), rgb(202,163,158));
    transition: width 0.4s ease;
}

.benefits-YBEKH .learning-pluses-JIiYh:hover span::after {
    width: 100%;
}

@media (max-width: 991px) {
    .benefits-YBEKH {
        padding: 4rem 0;
    }
    
    .benefits-YBEKH h3 {
        font-size: calc(38px * 0.9);
        text-align: center;
        padding-left: 0;
        transform: skewX(0);
    }
    
    .benefits-YBEKH h3::before {
        left: 50%;
        top: -15px;
        width: 50px;
        height: 4px;
        transform: translateX(-50%);
    }
    
    .benefits-YBEKH .learning-pros-eRkzb {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        transform: perspective(0) rotateX(0);
    }
    
    .benefits-YBEKH .learning-pluses-JIiYh,
    .benefits-YBEKH .learning-pluses-JIiYh:nth-child(odd),
    .benefits-YBEKH .learning-pluses-JIiYh:nth-child(even) {
        transform: none;
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .benefits-YBEKH {
        padding: 3rem 0;
    }
    
    .benefits-YBEKH h3 {
        font-size: calc(38px * 0.8);
        margin-bottom: 2rem;
    }
    
    .benefits-YBEKH .learning-pros-eRkzb {
        grid-template-columns: 1fr;
    }
    
    .benefits-YBEKH .learning-pluses-JIiYh svg {
        width: 50px;
        height: 50px;
    }
    
    .benefits-YBEKH .learning-pluses-JIiYh span {
        font-size: calc(24px * 0.9);
    }
}.learning-process-bXNSg {
    position: relative;
    min-height: 75vh;
    background: rgb(242,230,228);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-process-bXNSg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgb(225,199,195,0.5) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgb(202,163,158,0.5) 0%, transparent 40%);
    opacity: 0.6;
    z-index: 1;
}

.learning-process-bXNSg::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: 
        repeating-radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 30px
        );
    border-radius: 50%;
    z-index: 1;
    animation: pulseRings 6s ease-in-out infinite;
}

.learning-process-bXNSg .container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.learning-process-bXNSg .founder-vision-bKDIe {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.learning-process-bXNSg .founder-vision-bKDIe::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgb(225,199,195,0.5);
    border-radius: 50%;
    opacity: 0.6;
    animation: rotateCircle 20s linear infinite;
}

.learning-process-bXNSg .founder-vision-bKDIe::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px dashed rgb(202,163,158,0.5);
    border-radius: 50%;
    opacity: 0.4;
    animation: rotateCircle 30s linear infinite reverse;
}

.learning-process-bXNSg h3 {
    position: relative;
    font-size: 36px;
    color: rgb(225,199,195);
    font-weight: 700;
    text-align: center;
    background: #ffffff;
    padding: 2rem 3rem;
    margin: 0 0 20%;
    width: 70%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.learning-process-bXNSg h3::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 20%;
    bottom: -20%;
    left: 50%;
    background: linear-gradient(to bottom, rgb(225,199,195), transparent);
    z-index: 2;
}

.learning-process-bXNSg h3::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: -20%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
    background: #ffffff;
    border: 2px solid rgb(225,199,195,0.5);
    border-radius: 5px;
    z-index: 2;
    animation: rotateElement 10s linear infinite;
}

.learning-process-bXNSg span {
    position: relative;
    color: #000000;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    background: #ffffff;
    padding: 2rem 3rem;
    width: 70%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.learning-process-bXNSg span::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgb(225,199,195,0.5), rgb(202,163,158,0.5));
    z-index: -1;
    opacity: 0.3;
    filter: blur(5px);
    animation: glowPulse 4s ease-in-out infinite alternate;
}

.learning-process-bXNSg span::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background: #ffffff;
    border: 2px solid rgb(202,163,158,0.5);
    z-index: 3;
}

@keyframes pulseRings {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateElement {
    0% {
        transform: translate(-50%, 50%) rotate(45deg);
    }
    100% {
        transform: translate(-50%, 50%) rotate(405deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(5px);
    }
    50% {
        opacity: 0.5;
        filter: blur(10px);
    }
}

@media (max-width: 992px) {
    .learning-process-bXNSg .container {
        padding: 4rem 1.5rem;
    }
    
    .learning-process-bXNSg .founder-vision-bKDIe {
        aspect-ratio: auto;
        height: auto;
        gap: 4rem;
    }
    
    .learning-process-bXNSg h3 {
        font-size: calc(36px * 0.9);
        padding: 1.8rem 2.5rem;
        margin: 0;
        width: 80%;
    }
    
    .learning-process-bXNSg span {
        font-size: calc(15px * 0.95);
        padding: 1.8rem 2.5rem;
        width: 80%;
    }
    
    .learning-process-bXNSg h3::before,
    .learning-process-bXNSg h3::after {
        display: none;
    }
    
    .learning-process-bXNSg span::after {
        display: none;
    }
    
    .learning-process-bXNSg .founder-vision-bKDIe::before,
    .learning-process-bXNSg .founder-vision-bKDIe::after {
        border-radius: 30px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .learning-process-bXNSg {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .learning-process-bXNSg .container {
        padding: 0 1.2rem;
    }
    
    .learning-process-bXNSg .founder-vision-bKDIe {
        gap: 2rem;
    }
    
    .learning-process-bXNSg h3 {
        font-size: calc(36px * 0.8);
        padding: 1.5rem 2rem;
        width: 100%;
    }
    
    .learning-process-bXNSg span {
        font-size: calc(15px * 0.9);
        padding: 1.5rem 2rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .learning-process-bXNSg {
        padding: 2.5rem 0;
    }
    
    .learning-process-bXNSg .container {
        padding: 0 1rem;
    }
    
    .learning-process-bXNSg .founder-vision-bKDIe {
        gap: 1.5rem;
    }
    
    .learning-process-bXNSg h3 {
        font-size: calc(36px * 0.7);
        padding: 1.2rem 1.5rem;
    }
    
    .learning-process-bXNSg span {
        font-size: calc(15px * 0.85);
        padding: 1.2rem 1.5rem;
    }
    
    .learning-process-bXNSg .founder-vision-bKDIe::before,
    .learning-process-bXNSg .founder-vision-bKDIe::after {
        display: none;
    }
}.ty-note-GjVCg {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(225,199,195,0.5);
    padding: 60px 20px;
    position: relative;
    height: 100vh;
}
.ty-note-GjVCg .container {
    max-width: 1000px;
    width: 100%;
    background-color: rgb(242,230,228);
    padding: 50px;
    border-radius: 17px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: 2px solid rgb(225,199,195);
}
.ty-note-GjVCg .container::before,
.ty-note-GjVCg .container::after {
    content: '';
    position: absolute;
    border-radius: 17px;
    border: 2px solid rgb(225,199,195,0.5);
    box-shadow: 0 0 15px rgb(225,199,195,0.5);
}
.ty-note-GjVCg .container::before {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}
.ty-note-GjVCg .container::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgb(202,163,158,0.5);
    box-shadow: 0 0 10px rgb(202,163,158,0.5);
}
.ty-note-GjVCg .container h2 {
    font-size: 33px;
    color: rgb(225,199,195);
    font-family: Ubuntu, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid rgb(202,163,158);
    letter-spacing: 1.5px;
    background: rgb(225,199,195,0.5);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(225,199,195,0.5);
}
.ty-note-GjVCg .container p {
    font-size: 16px;
    color: #000000;
    font-family: Ubuntu, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    background: rgb(225,199,195,0.5);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(202,163,158,0.5);
    color: #ffffff;
}
@media only screen and (max-width: 800px) {
    .ty-note-GjVCg {
        padding: 30px 10px;
    }
    .ty-note-GjVCg .container {
        padding: 30px;
    }
    .ty-note-GjVCg h2 {
        font-size: 44px;
    }
}
.instructor-history-tPJsD {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(242,230,228) 0%, rgb(225,199,195,0.5) 100%);
}

.instructor-history-tPJsD::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -5%;
    width: 120%;
    height: 70%;
    background: rgb(202,163,158,0.5);
    transform: rotate(-12deg);
    z-index: 1;
}

.instructor-history-tPJsD .feedback-carousel-GOHDb {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    z-index: 2;
    transform: translateX(5%);
}

.instructor-history-tPJsD .snapshot-ceopL {
    width: 280px;
    height: 350px;
    border-radius: 28px;
    box-shadow: 15px 15px 0 rgb(225,199,195,0.5);
    transform: rotate(-5deg);
    transition: all 0.5s ease;
}

.instructor-history-tPJsD .snapshot-ceopL:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.instructor-history-tPJsD .work-wrap-KPrwA {
    max-width: 60%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
    transform: rotate(2deg) translateY(-30px);
    position: relative;
    transition: all 0.5s ease;
}

.instructor-history-tPJsD .work-wrap-KPrwA::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 85%;
    height: 10px;
    background: rgb(202,163,158);
    filter: blur(8px);
    opacity: 0.6;
    transition: all 0.5s ease;
}

.instructor-history-tPJsD .work-wrap-KPrwA:hover {
    transform: rotate(0deg) translateY(-20px);
}

.instructor-history-tPJsD .work-wrap-KPrwA:hover::after {
    width: 95%;
    opacity: 0.8;
}

.instructor-history-tPJsD .name {
    font-size: 29px;
    font-weight: 700;
    color: rgb(225,199,195);
    margin-bottom: 0.5rem;
    transform: translateX(-20px);
}

.instructor-history-tPJsD .work-wrap-KPrwA > div:nth-child(2) {
    font-size: 17px;
    font-weight: 600;
    color: rgb(202,163,158);
    margin-bottom: 1.5rem;
    transform: translateX(-10px);
}

.instructor-history-tPJsD .job-background-XGnCo {
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.instructor-history-tPJsD .job-background-XGnCo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, rgb(225,199,195), rgb(202,163,158));
    border-radius: 10px;
}

@media (max-width: 992px) {
    .instructor-history-tPJsD .feedback-carousel-GOHDb {
        flex-direction: column;
        transform: none;
        gap: 2rem;
    }
    
    .instructor-history-tPJsD .snapshot-ceopL {
        width: 220px;
        height: 280px;
        margin: 0 auto;
    }
    
    .instructor-history-tPJsD .work-wrap-KPrwA {
        max-width: 100%;
        transform: none;
    }
    
    .instructor-history-tPJsD .name,
    .instructor-history-tPJsD .work-wrap-KPrwA > div:nth-child(2) {
        transform: none;
    }
}header {
    position: relative;
    background: linear-gradient(120deg, rgb(225,199,195) 0%, rgb(202,163,158) 100%);
    padding: 0;
    margin-top: 0;
    z-index: 100;
    overflow: visible;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
}

header::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
    z-index: -1;
}

header .nav-header-zYVCZ {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    z-index: 5;
}

header .main-top-Hecgb {
    position: relative;
    flex: 0 0 auto;
    margin-right: 2rem;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    background: rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1.2rem 0.7rem 1rem;
    transition: all 0.3s ease;
}

header .main-top-Hecgb::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    z-index: -1;
}

header .main-top-Hecgb:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
}

header .main-sitewrap-kfzCh {
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

header .main-sitewrap-kfzCh img {
    max-height: 40px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

header .top-page-ZjGvT {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

header .head-page-XhowJ {
    position: relative;
    margin: 0 0.5rem;
}

header .head-page-XhowJ a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1.2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    clip-path: polygon(
        10px 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        10px 100%,
        0 calc(100% - 10px),
        0 10px
    );
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

header .head-page-XhowJ a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

header .head-page-XhowJ a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

header .head-page-XhowJ a:hover::before {
    left: 100%;
}

header .head-page-XhowJ::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

header .head-page-XhowJ:hover::after {
    width: 80%;
}

header .nav-header-zYVCZ::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    border-bottom: none;
    opacity: 0.5;
}

header .nav-header-zYVCZ::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 10px;
    left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    border-top: none;
    opacity: 0.5;
}

header .main-mainwrap-GOvdB {
    position: relative;
    z-index: 1;
    background: rgb(242,230,228);
    padding-top: 2rem;
    margin-top: -15px;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

header::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff;
    animation: pulse 2s infinite;
}

@media (min-width: 1400px) {
    header .nav-header-zYVCZ {
        max-width: 1320px;
        margin: 0 auto;
    }
    
    header .head-page-XhowJ {
        margin: 0 0.7rem;
    }
    
    header .head-page-XhowJ a {
        padding: 0 1.5rem;
    }
}

@media (max-width: 991px) {
    header {
        clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            10px 100%, 
            0 calc(100% - 10px)
        );
    }
    
    header .nav-header-zYVCZ {
        flex-wrap: wrap;
        padding: 1rem 2rem;
    }
    
    header .main-top-Hecgb {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    header .top-page-ZjGvT {
        flex-basis: 100%;
        justify-content: flex-end;
        margin-top: 1rem;
    }
    
    header .head-page-XhowJ a {
        height: 35px;
        padding: 0 1rem;
        font-size: calc(12px - 1px);
    }
    
    header .nav-header-zYVCZ::before,
    header .nav-header-zYVCZ::after {
        display: none;
    }
    
    .main-mainwrap-GOvdB {
        margin-top: -10px;
    }
}

@media (max-width: 767px) {
    header {
        padding: 0;
        clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 5px), 
            calc(100% - 5px) 100%, 
            5px 100%, 
            0 calc(100% - 5px)
        );
    }
    
    header .nav-header-zYVCZ {
        padding: 0.8rem 1.5rem;
    }
    
    header .main-top-Hecgb {
        padding: 0.5rem 0.8rem;
        clip-path: polygon(
            0 0,
            calc(100% - 5px) 0,
            100% 5px,
            100% 100%,
            5px 100%,
            0 calc(100% - 5px)
        );
    }
    
    header .main-sitewrap-kfzCh img {
        max-height: 35px;
    }
    
    header .top-page-ZjGvT {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        margin-top: 0.8rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    header .top-page-ZjGvT::-webkit-scrollbar {
        height: 3px;
    }
    
    header .top-page-ZjGvT::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
    }
    
    header .head-page-XhowJ {
        flex: 0 0 auto;
        margin: 0 0.25rem;
    }
    
    header .head-page-XhowJ a {
        white-space: nowrap;
        height: 32px;
        padding: 0 0.8rem;
        font-size: calc(12px - 2px);
        clip-path: polygon(
            5px 0,
            calc(100% - 5px) 0,
            100% 5px,
            100% calc(100% - 5px),
            calc(100% - 5px) 100%,
            5px 100%,
            0 calc(100% - 5px),
            0 5px
        );
    }
    
    header .head-page-XhowJ::after {
        display: none;
    }
    
    header::after {
        top: 10px;
        right: 10px;
        width: 5px;
        height: 5px;
    }
    
    .main-mainwrap-GOvdB {
        margin-top: -5px;
    }
}

@media (max-width: 479px) {
    header .nav-header-zYVCZ {
        padding: 0.7rem 1.2rem;
    }
    
    header .main-top-Hecgb {
        padding: 0.4rem 0.6rem;
        max-width: 120px;
    }
    
    header .head-page-XhowJ a {
        height: 30px;
        padding: 0 0.6rem;
        font-size: calc(12px - 3px);
    }
}.contact-form-box-gqWcG {
    position: relative;
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.contact-form-box-gqWcG::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%) -10px 0,
                linear-gradient(225deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%) -10px 0,
                linear-gradient(315deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%),
                linear-gradient(45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%);
    background-size: 20px 20px;
    z-index: 0;
}

.contact-form-box-gqWcG .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-box-gqWcG h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid rgb(225,199,195);
}

.contact-form-box-gqWcG .connect-query-lJLRG {
    display: flex;
    flex-direction: row-reverse;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-form-box-gqWcG .snapshot-ceopL {
    flex: 0 0 40%;
    position: relative;
    min-height: 500px;
}

.contact-form-box-gqWcG .snapshot-ceopL::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(225,199,195,0.5);
    z-index: 1;
    mix-blend-mode: multiply;
}

.contact-form-box-gqWcG .connect-reach-tcYrv {
    flex: 0 0 60%;
    padding: 60px;
    position: relative;
}

.contact-form-box-gqWcG .connect-reach-tcYrv::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgb(242,230,228);
    border-radius: 0 0 0 100%;
    z-index: -1;
}

.contact-form-box-gqWcG #contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-box-gqWcG h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    position: relative;
}

.contact-form-box-gqWcG h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgb(225,199,195);
}

.contact-form-box-gqWcG input[type="text"] {
    background: rgb(242,230,228);
    border: none;
    border-radius: 10px;
    padding: 18px 20px;
    color: #000000;
    font-size: 13px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.contact-form-box-gqWcG input[type="text"]:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px rgb(225,199,195,0.5), inset 0 2px 4px rgba(0, 0, 0, 0.03);
    outline: none;
}

.contact-form-box-gqWcG input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.6;
}

.contact-form-box-gqWcG .help-inquiry-cryLB {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.contact-form-box-gqWcG .help-inquiry-cryLB input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgb(242,230,228);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-form-box-gqWcG .help-inquiry-cryLB input[type="checkbox"]:checked {
    background: rgb(225,199,195);
    border-color: rgb(225,199,195);
}

.contact-form-box-gqWcG .help-inquiry-cryLB input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 11px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form-box-gqWcG .help-inquiry-cryLB label {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
}

.contact-form-box-gqWcG .help-inquiry-cryLB a {
    color: rgb(225,199,195);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-form-box-gqWcG .help-inquiry-cryLB a:hover {
    color: rgb(202,163,158);
}

.contact-form-box-gqWcG .help-inquiry-cryLB a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(225,199,195);
    transition: all 0.3s ease;
}

.contact-form-box-gqWcG .help-inquiry-cryLB a:hover::after {
    background: rgb(202,163,158);
}

.contact-form-box-gqWcG .message-reach-KRjQV {
    background: rgb(225,199,195);
    border: none;
    border-radius: 26px;
    padding: 18px 40px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(225,199,195,0.5);
    align-self: flex-start;
    margin-top: 20px;
}

.contact-form-box-gqWcG .message-reach-KRjQV:hover {
    background: rgb(202,163,158);
    box-shadow: 0 7px 20px rgb(202,163,158,0.5);
    transform: translateY(-2px);
}

.contact-form-box-gqWcG svg {
    fill: rgb(225,199,195);
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.contact-form-box-gqWcG svg path {
    fill: rgb(225,199,195);
    transition: all 0.3s ease;
}

.contact-form-box-gqWcG svg:hover {
    fill: rgb(202,163,158);
}

.contact-form-box-gqWcG svg:hover path {
    fill: rgb(202,163,158);
}

@media (max-width: 992px) {
    .contact-form-box-gqWcG .connect-query-lJLRG {
        flex-direction: column;
    }

    .contact-form-box-gqWcG .snapshot-ceopL {
        flex: 0 0 auto;
        min-height: 300px;
        order: 1;
    }

    .contact-form-box-gqWcG .connect-reach-tcYrv {
        flex: 0 0 auto;
        padding: 50px 40px;
        order: 2;
    }

    .contact-form-box-gqWcG h2 {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form-box-gqWcG {
        padding: 60px 0;
    }

    .contact-form-box-gqWcG h2 {
        font-size: calc(36px - 4px);
        margin-bottom: 30px;
    }

    .contact-form-box-gqWcG .connect-reach-tcYrv {
        padding: 40px 30px;
    }

    .contact-form-box-gqWcG #contact {
        gap: 25px;
    }

    .contact-form-box-gqWcG .snapshot-ceopL {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .contact-form-box-gqWcG {
        padding: 40px 0;
    }

    .contact-form-box-gqWcG .container {
        padding: 0 15px;
    }

    .contact-form-box-gqWcG h2 {
        font-size: calc(36px - 6px);
        margin-bottom: 25px;
        padding-left: 15px;
    }

    .contact-form-box-gqWcG .connect-reach-tcYrv {
        padding: 30px 20px;
    }

    .contact-form-box-gqWcG #contact {
        gap: 20px;
    }

    .contact-form-box-gqWcG input[type="text"] {
        padding: 15px;
    }

    .contact-form-box-gqWcG .message-reach-KRjQV {
        width: 100%;
        padding: 15px 20px;
    }

    .contact-form-box-gqWcG .snapshot-ceopL {
        min-height: 200px;
    }
}.user-comments-PXovi {
    position: relative;
    background: linear-gradient(90deg, rgb(242,230,228) 0%, rgb(225,199,195,0.5) 30%, rgb(242,230,228) 100%);
    padding: 8rem 2rem;
    overflow: hidden;
    perspective: 1000px;
}

.user-comments-PXovi::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(225,199,195), transparent);
    top: 50%;
    left: 10%;
    box-shadow: 0 0 20px 5px rgb(225,199,195,0.5);
    z-index: 1;
}

.user-comments-PXovi::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgb(202,163,158,0.5) 0%, transparent 60%);
    top: 0;
    left: 0;
    opacity: 0.4;
    z-index: 0;
}

.user-comments-PXovi .container {
    position: relative;
    z-index: 2;
}

.user-comments-PXovi h2 {
    font-size: calc(36px * 1.4);
    font-weight: 700;
    color: #000000;
    margin-bottom: 4rem;
    text-align: center;
    perspective: 1000px;
    position: relative;
}

.user-comments-PXovi h2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, transparent, rgb(225,199,195,0.5), transparent);
    bottom: -20px;
    left: 0;
    filter: blur(10px);
}

.user-comments-PXovi .rating-views-NsMIh {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    transform-style: preserve-3d;
    overflow-x: auto;
    padding: 3rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgb(225,199,195) rgb(242,230,228);
    scroll-snap-type: x mandatory;
}

.user-comments-PXovi .rating-views-NsMIh::-webkit-scrollbar {
    height: 8px;
}

.user-comments-PXovi .rating-views-NsMIh::-webkit-scrollbar-track {
    background: rgb(242,230,228);
    border-radius: 10px;
}

.user-comments-PXovi .rating-views-NsMIh::-webkit-scrollbar-thumb {
    background-color: rgb(225,199,195);
    border-radius: 10px;
}

.user-comments-PXovi .feedback-carousel-GOHDb {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotateY(10deg) translateZ(0);
    transform-origin: left center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    scroll-snap-align: center;
    overflow: hidden;
}

.user-comments-PXovi .feedback-carousel-GOHDb:hover {
    transform: rotateY(0deg) translateZ(50px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.user-comments-PXovi .feedback-carousel-GOHDb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(225,199,195,0.5) 0%, transparent 70%);
    opacity: 0.4;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.user-comments-PXovi .feedback-carousel-GOHDb:hover::before {
    opacity: 0.7;
}

.user-comments-PXovi .feedback-carousel-GOHDb img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-30px);
    transition: all 0.4s ease;
}

.user-comments-PXovi .feedback-carousel-GOHDb:hover img {
    transform: translateY(-40px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.user-comments-PXovi .feedback-carousel-GOHDb p {
    margin: 0;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    transform: translateY(-10px);
}

.user-comments-PXovi .feedback-carousel-GOHDb .master-it-VefGA {
    margin-top: 1rem;
    text-align: center;
    font-weight: 400;
    color: #000000;
    font-size: 13px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.user-comments-PXovi .feedback-carousel-GOHDb:hover .master-it-VefGA {
    transform: translateY(-5px);
    opacity: 1;
}

.user-comments-PXovi .feedback-carousel-GOHDb:nth-child(odd) {
    transform: rotateY(15deg) translateZ(0);
}

.user-comments-PXovi .feedback-carousel-GOHDb:nth-child(odd):hover {
    transform: rotateY(0deg) translateZ(50px) scale(1.05);
}

.user-comments-PXovi .feedback-carousel-GOHDb:nth-child(3n+1)::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(202,163,158,0.5);
    bottom: -20px;
    right: -20px;
    filter: blur(15px);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.user-comments-PXovi .feedback-carousel-GOHDb:nth-child(3n+1):hover::after {
    width: 70px;
    height: 70px;
    opacity: 0.7;
}

.user-comments-PXovi .feedback-carousel-GOHDb:nth-child(3n+2)::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(225,199,195,0.5);
    top: -15px;
    right: -15px;
    filter: blur(10px);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.user-comments-PXovi .feedback-carousel-GOHDb:nth-child(3n+2):hover::after {
    width: 60px;
    height: 60px;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .user-comments-PXovi {
        padding: 6rem 1rem;
    }
    
    .user-comments-PXovi h2 {
        font-size: calc(36px * 1.2);
        margin-bottom: 3rem;
    }
    
    .user-comments-PXovi .rating-views-NsMIh {
        gap: 2.5rem;
        padding: 2.5rem 0;
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb {
        flex: 0 0 270px;
        padding: 1.8rem;
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .user-comments-PXovi {
        padding: 5rem 1rem;
    }
    
    .user-comments-PXovi::before {
        display: none;
    }
    
    .user-comments-PXovi h2 {
        font-size: 36px;
        margin-bottom: 2.5rem;
    }
    
    .user-comments-PXovi .rating-views-NsMIh {
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb {
        flex: 0 0 240px;
        padding: 1.5rem;
        transform: rotateY(5deg) translateZ(0) !important;
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb:hover {
        transform: rotateY(0deg) translateZ(20px) scale(1.03) !important;
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb img {
        width: 90px;
        height: 90px;
        transform: translateY(-25px);
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb:hover img {
        transform: translateY(-30px) scale(1.05);
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb p {
        font-size: calc(13px * 1.1);
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb .master-it-VefGA {
        font-size: calc(13px * 0.9);
    }
}

@media (max-width: 480px) {
    .user-comments-PXovi {
        padding: 4rem 0.5rem;
    }
    
    .user-comments-PXovi .rating-views-NsMIh {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb {
        flex: 0 0 85%;
        transform: rotateY(0) translateZ(0) !important;
    }
    
    .user-comments-PXovi .feedback-carousel-GOHDb:hover {
        transform: rotateY(0) translateZ(0) scale(1.02) !important;
    }
}header .top_plank {
    background: rgb(225,199,195);
    color:  #ffffff;
}
header .top_plank .nav-ribbon-XdKpN div svg, header .top_plank .nav-ribbon-XdKpN div svg path {
    fill: #ffffff;
}
header .top_plank .nav-ribbon-XdKpN div span {
    color: #ffffff;
}
header .top_plank .nav-ribbon-XdKpN {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 12px;
    line-height: 21px;
    flex-wrap: wrap;
}
header .top_plank .nav-ribbon-XdKpN div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}
header .top_plank .nav-ribbon-XdKpN div img, header .top_plank .nav-ribbon-XdKpN div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}footer {
    background: rgb(202,163,158);
    color: #ffffff;
}

footer .zoom-meet-ufigU {
    background: rgb(225,199,195);
}

footer .main-top-Hecgb svg, footer .main-top-Hecgb svg path {
    fill: rgb(225,199,195);
}

footer h5 {
    color: rgb(225,199,195);
}

footer .top-page-ZjGvT a {
    color: #ffffff;
}

footer .template-cta-McsKI {
    color: #ffffff;
}

footer .template-cta-McsKI a {
    color: #ffffff;
    text-decoration: underline;
}

footer .help-help-vpNZj div svg, footer .help-help-vpNZj div svg path {
    fill: #ffffff;
}

footer .help-help-vpNZj div span {
    color: #ffffff;
}

footer .green-edu-bSjta {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .zoom-meet-ufigU {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .faq-block-SRmPg {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .main-top-Hecgb svg, footer .main-top-Hecgb img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 18px;
    margin-bottom: 16px;

}

footer .help-help-vpNZj {
    display: flex;
    flex-direction: column;
}

footer .help-help-vpNZj div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .help-help-vpNZj div img, footer .help-help-vpNZj div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .page-top-PCHaw {
    display: flex;
    flex-direction: column;
}

footer .top-page-ZjGvT a {
    text-decoration: none;
    font-size: 18px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .zoom-meet-ufigU {
    font-size: 13px;
}

@media only screen and (max-width: 1200px) {
    footer .faq-block-SRmPg {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .top-page-ZjGvT, footer .page-top-PCHaw, footer .faq-block-SRmPg {
        flex-direction: column;
    }

    footer .help-help-vpNZj {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.wrapper-container-FEWzI footer .main-top-Hecgb svg, .wrapper-container-FEWzI footer .main-top-Hecgb img {
    width: 55px;
    height: 55px;
    margin: 0;
}

.wrapper-container-FEWzI footer {
    padding-top: 60px;
    padding-bottom: 40px;
}

.wrapper-container-FEWzI footer .green-edu-bSjta {
    padding: 0;
}

.wrapper-container-FEWzI footer .faq-block-SRmPg {
    flex-direction: column;
    width: 100%;
}

.wrapper-container-FEWzI footer .top-page-ZjGvT {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
}

.wrapper-container-FEWzI footer .zoom-meet-ufigU {
    background: rgb(202,163,158);
}

.wrapper-container-FEWzI footer .page-top-PCHaw {
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
}

.wrapper-container-FEWzI footer .top-page-ZjGvT a {
    font-weight: 400;
    margin-right: 24px;
}

.wrapper-container-FEWzI footer .top-page-ZjGvT a:last-child {
    margin-right: 0;
}

.wrapper-container-FEWzI footer .top-page-ZjGvT {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.wrapper-container-FEWzI footer h5 {
    white-space: nowrap;
    font-size: 18px;
    margin: 0;
}

footer .zoom-meet-ufigU {
    padding: 10px 0;
}

.wrapper-container-FEWzI footer .template-cta-McsKI {
    text-align: right;
}

@media only screen and (max-width: 800px) {
    .wrapper-container-FEWzI footer .faq-block-SRmPg {
        padding: 0;
        align-items: center;
    }

    .wrapper-container-FEWzI footer h5 {
        display: none;
    }

    .wrapper-container-FEWzI footer .page-top-PCHaw {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .wrapper-container-FEWzI footer .top-page-ZjGvT a {
        margin-right: 0;
    }

    .wrapper-container-FEWzI footer .template-cta-McsKI {
        text-align: center;
    }
}.test-drive-rVwJW {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(120deg, rgb(242,230,228) 0%, rgb(225,199,195,0.5) 100%);
    overflow: hidden;
}

.test-drive-rVwJW::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, #ffffff 50%, transparent 100%);
    opacity: 0.1;
    transform: skewY(-5deg);
    z-index: 1;
}

.test-drive-rVwJW::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgb(225,199,195,0.5) 0%, transparent 100%);
    opacity: 0.2;
    z-index: 1;
}

.test-drive-rVwJW .founder-vision-bKDIe {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 29px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 10;
}

.test-drive-rVwJW .container p {
    flex: 1;
    padding: 60px;
    margin: 0;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 5;
}

.test-drive-rVwJW .message-reach-KRjQV {
    position: relative;
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 50px;
    background: linear-gradient(135deg, rgb(225,199,195) 0%, rgb(202,163,158) 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    z-index: 5;
}

.test-drive-rVwJW .container p::after {
    content: '';
    position: absolute;
    left: 60px;
    bottom: 40px;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, rgb(225,199,195), rgb(202,163,158));
    border-radius: 10px;
}

.test-drive-rVwJW .message-reach-KRjQV::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(202,163,158) 0%, rgb(225,199,195) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.test-drive-rVwJW .message-reach-KRjQV:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.test-drive-rVwJW .message-reach-KRjQV:hover::before {
    opacity: 1;
}

.test-drive-rVwJW .founder-vision-bKDIe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, rgb(225,199,195), rgb(202,163,158));
    z-index: 2;
}

.test-drive-rVwJW .founder-vision-bKDIe::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 90%, rgb(225,199,195,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgb(202,163,158,0.5) 0%, transparent 30%);
    opacity: 0.05;
    z-index: 1;
}

@media (max-width: 991px) {
    .test-drive-rVwJW {
        padding: 90px 0;
    }
    
    .test-drive-rVwJW .container p {
        padding: 40px;
        font-size: calc(18px * 1.2);
    }
    
    .test-drive-rVwJW .message-reach-KRjQV {
        flex: 0 0 200px;
        padding: 40px 20px;
    }
    
    .test-drive-rVwJW .container p::after {
        left: 40px;
        bottom: 30px;
        width: 50px;
    }
}

@media (max-width: 767px) {
    .test-drive-rVwJW {
        padding: 70px 0;
    }
    
    .test-drive-rVwJW .founder-vision-bKDIe {
        flex-direction: column;
    }
    
    .test-drive-rVwJW .container p {
        padding: 30px;
        font-size: 18px;
        text-align: center;
    }
    
    .test-drive-rVwJW .message-reach-KRjQV {
        flex: none;
        width: 100%;
        padding: 20px;
    }
    
    .test-drive-rVwJW .container p::after {
        left: 50%;
        bottom: 15px;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .test-drive-rVwJW {
        padding: 50px 0;
    }
    
    .test-drive-rVwJW .container p {
        padding: 25px 20px;
        font-size: calc(18px * 1.2);
    }
    
    .test-drive-rVwJW .message-reach-KRjQV {
        padding: 15px;
        font-size: calc(17px * 0.9);
    }
}