* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.workshop-cta {
    flex: 0 0 auto;
}.inner-container {
    flex-direction: column;
    height: 100%;
    display: flex;
    min-height: 100%;
}header,footer {
    width: 100%;
}.main-skill {
    flex: 1 0 auto;
}::-webkit-scrollbar {
    background: rgb(255, 255, 255, 0.5);
    width: 19px;
    padding: 3px;
}::-webkit-scrollbar-track {
    background: linear-gradient(45deg, rgb(118,121,134) 45%, rgb(153,159,173) 46%, rgb(153,159,173,0.5) 83%, rgb(188,194,213) 76%);
}::-webkit-scrollbar-thumb {
    transition: all, transform 4.6s ease-in;
    border-radius: 9999px;
    box-shadow: -5px 4px 2px -2px rgba(0, 0, 0, 0.6);
    background: radial-gradient(circle at bottom left, rgb(118,121,134) 30%, rgb(118,121,134,0.5) 98%, rgb(153,159,173,0.5) 18%, rgb(188,194,213) 90%);
    border: 2px groove rgb(153,159,173,0.5);
}::-webkit-scrollbar-thumb:hover {
    background: rgb(153,159,173);
}

::-webkit-scrollbar-thumb:active {
}::-webkit-scrollbar-corner {
    background: rgb(153,159,173);
    border-radius: 5px;
}html,body {
    font-family: Arial, sans-serif;
    min-height: 100%;
    color: #000000;
    scroll-behavior: smooth;
    height: 100%;
}a {
    text-decoration: none;
    color: inherit;
}.container {
    width: 1139px;
    margin: auto;
    max-width: 100%;
}svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header {
    background: rgb(188,194,213);
    overflow: visible;
    position: relative;
    z-index: 99;
    width: 100%;
}header::before {
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(153,159,173,0.5) 0%, transparent 50%, rgb(153,159,173,0.5) 100%);
    content: "";
    height: 100%;
    opacity: 0.15;
    z-index: -1;
    width: 100%;
}header .top-core {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    position: relative;
    display: grid;
    padding: 20px;
    gap: 15px;
}header .top-core::after {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(153,159,173,0.5), transparent);
    height: 1px;
    content: "";
    width: 100%;
    top: 50%;
    left: 0;
}header .top-core .head-bar {
    padding: 5px 20px 15px;
    z-index: 10;
    justify-self: center;
    position: relative;
}header .top-core .head-bar::before,
header .top-core .head-bar::after {
    position: absolute;
    content: "";
    height: 90%;
    border-radius: 22px;
    width: 90%;
}header .top-core .head-bar::before {
    left: -5px;
    border-left: 2px solid rgb(153,159,173);
    transform-origin: top left;
    transition: transform 0.3s ease;
    top: -5px;
    border-top: 2px solid rgb(153,159,173);
    transform: scale(0);
}header .top-core .head-bar::after {
    transform: scale(0);
    border-right: 2px solid rgb(118,121,134);
    transform-origin: bottom right;
    border-bottom: 2px solid rgb(118,121,134);
    right: -5px;
    bottom: -5px;
    transition: transform 0.3s ease;
}header .top-core .head-bar:hover::before,
header .top-core .head-bar:hover::after {
    transform: scale(1);
}header .top-core .head-bar .first-class {
    transition: transform 0.3s ease;
    display: block;
}header .top-core .head-bar .first-class svg {
    width: auto;
    height: 60px;
}header .top-core .top-nav {
    position: relative;
    margin: 0;
    justify-content: center;
    padding: 20px 0 10px;
    background: linear-gradient(180deg, transparent, rgb(118,121,134) 15%, rgba(0, 0, 0, 0.5) 85%, transparent 50%);
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}header .top-core .top-nav::before,
header .top-core .top-nav::after {
    background: rgb(153,159,173,0.5);
    content: "";
    position: absolute;
    top: 15%;
    width: 2px;
    height: 70%;
}header .top-core .top-nav::before {
    left: 0;
}header .top-core .top-nav::after {
    right: 0;
}header .top-core .top-nav .nav-site {
    padding: 0 15px;
    transition: transform 0.3s ease;
    position: relative;
    margin: 0;
}header .top-core .top-nav .nav-site:not(:last-child)::after {
    content: "";
    background: rgb(118,121,134,0.5);
    top: 20%;
    height: 60%;
    position: absolute;
    right: 0;
    width: 1px;
}header .top-core .top-nav .nav-site:hover {
    transform: translateY(-3px);
}header .top-core .top-nav .nav-site a {
    font-family: Arial, sans-serif;
    color: #000000;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
    font-weight: 600;
    padding: 10px 5px;
    font-size: 15px;
    display: block;
    position: relative;
}header .top-core .top-nav .nav-site a:hover {
    color: rgb(153,159,173);
}header .top-core .top-nav .nav-site a::before {
    content: "";
    bottom: 5px;
    background: rgb(118,121,134);
    transform: scaleX(0);
    position: absolute;
    left: 0;
    height: 2px;
    transition: transform 0.3s ease;
    width: 100%;
}header .top-core .top-nav .nav-site a:hover::before {
    transform: scaleX(1);
}

@media (min-width: 993px) {header .top-core {
    grid-template-columns: 1fr;
    padding: 15px 30px;
    grid-template-rows: auto auto;
}header .top-core .top-nav {
    padding: 20px 10px 10px;
}
}

@media (max-width: 992px) {header .top-core {
    padding: 15px;
    gap: 10px;
    grid-template-rows: auto auto;
}header .top-core .head-bar {
    padding: 5px 10px;
}header .top-core .head-bar .first-class svg {
    height: 45px;
}header .top-core .top-nav {
    padding: 15px 0 10px;
}header .top-core .top-nav .nav-site {
    padding: 0 10px;
}header .top-core .top-nav .nav-site a {
    padding: 8px 3px;
    font-size: calc(15px - 1px);
}
}

@media (max-width: 767px) {header .top-core .top-nav {
    flex-wrap: wrap;
    justify-content: center;
}header .top-core .top-nav .nav-site {
    margin: 3px 0;
}header .top-core .top-nav .nav-site:not(:last-child)::after {
    display: none;
}}.course-features {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, #ffffff 100%);
    position: relative;
    padding: 100px 0;
}.course-features::before {
    left: 0;
    position: absolute;
    height: 100%;
    content: "";
    width: 100%;
    opacity: 0.1;
    z-index: 0;
    background: linear-gradient(45deg, rgb(153,159,173,0.5) 0%, transparent 70%);
    top: 0;
}.course-features::after {
    background: linear-gradient(to right, transparent, rgb(118,121,134,0.5));
    opacity: 0.05;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 30%;
    z-index: 0;
    position: absolute;
}.course-features .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 20px;
}.course-features .master-it {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    gap: 40px;
}.course-features .img-expand {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
    transform: perspective(1000px) rotateY(-2deg);
}.course-features .img-expand::before {
    transition: opacity 0.3s ease;
    opacity: 0.6;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    content: "";
    background: linear-gradient(120deg, rgb(153,159,173,0.5) 0%, transparent 60%);
}.course-features .img-expand:hover {
    transform: perspective(1000px) rotateY(0deg);
}.course-features .img-expand:hover::before {
    opacity: 0.4;
}.course-features .text-placeholder {
    transition: transform 0.3s ease;
    background: #ffffff;
    transform: translateY(-20px);
    position: relative;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}.course-features .text-placeholder::before {
    width: 5px;
    top: 0;
    left: 0;
    position: absolute;
    transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    content: "";
    background: rgb(118,121,134);
    height: 0;
}.course-features .text-placeholder:hover::before {
    height: 100%;
}.course-features h3 {
    position: relative;
    font-size: calc(18px * 1.1);
    transform-origin: left center;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}.course-features .text-placeholder:hover h3 {
    color: rgb(118,121,134);
    transform: translateX(10px);
}.course-features .description {
    font-size: 18px;
    margin-bottom: 20px;
    padding-right: 15px;
    position: relative;
    overflow-y: auto;
    color: #000000;
    line-height: 1.7;
    max-height: 300px;
}.course-features .description::-webkit-scrollbar {
    width: 5px;
}.course-features .description::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgb(188,194,213);
}.course-features .description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(118,121,134,0.5);
}.course-features .description::-webkit-scrollbar-thumb:hover {
    background: rgb(118,121,134);
}.course-features p.description {
    display: block;
}.course-features span.description {
    display: none;
}

@media (max-width: 991px) {.course-features {
    padding: 70px 0;
}.course-features .img-expand {
    height: 250px;
}.course-features h3 {
    font-size: 18px;
}.course-features .description {
    max-height: 250px;
}
}

@media (min-width: 992px) {.course-features .master-it {
    align-items: center;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
}.course-features .img-expand {
    transform: perspective(1000px) rotateY(-3deg) translateX(-20px);
    height: 500px;
}.course-features .text-placeholder {
    padding: 40px 50px;
    transform: perspective(1000px) rotateY(2deg) translateX(20px);
}.course-features .text-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg) translateX(0);
}.course-features h3 {
    font-size: 38px;
    margin-bottom: 30px;
}.course-features .description {
    max-height: 400px;
}
}

@media (min-width: 1200px) {.course-features .master-it {
    gap: 80px;
}.course-features .img-expand {
    height: 550px;
}.course-features .text-placeholder {
    padding: 50px 60px;
}.course-features h3 {
    font-size: calc(38px * 1.1);
}.course-features .description {
    font-size: calc(18px * 1.05);
    line-height: 1.8;
    max-height: 450px;
}
}

@media (max-width: 767px) {.course-features {
    padding: 50px 0;
}.course-features .img-expand {
    height: 200px;
    transform: perspective(1000px) rotateY(-1deg);
}.course-features .text-placeholder {
    padding: 25px;
}.course-features h3 {
    font-size: calc(18px * 0.9);
    margin-bottom: 15px;
}.course-features .description {
    line-height: 1.6;
    font-size: calc(18px * 0.95);
    max-height: 200px;
}}.user-reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, rgb(153,159,173,0.5) 100%);
    overflow: hidden;
    position: relative;
}.user-reviews::before {
    background: radial-gradient(circle, rgb(118,121,134,0.5) 0%, transparent 70%);
    height: 300px;
    z-index: 0;
    top: -5%;
    content: "";
    right: -5%;
    opacity: 0.3;
    width: 300px;
    position: absolute;
}.user-reviews::after {
    position: absolute;
    bottom: -5%;
    width: 250px;
    content: "";
    height: 250px;
    left: -5%;
    background: radial-gradient(circle, rgb(153,159,173,0.5) 0%, transparent 70%);
    z-index: 0;
    opacity: 0.2;
}.user-reviews .container {
    z-index: 1;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}.user-reviews h2 {
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000000;
    position: relative;
}.user-reviews h2::after {
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    position: absolute;
    left: 50%;
    background: linear-gradient(90deg, rgb(153,159,173) 0%, rgb(118,121,134) 100%);
    content: "";
    height: 3px;
}.user-reviews .student-perspectives {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0;
}.user-reviews .rating-voices {
    transform: translateY(30px);
    opacity: 0;
    animation-delay: calc(0.1s * var(--index, 0));
    border-left: 3px solid rgb(153,159,173);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
}.user-reviews .rating-voices:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}.user-reviews .rating-voices::before {
    content: "";
    right: 20px;
    color: rgb(153,159,173,0.5);
    font-family: serif;
    font-size: 6rem;
    opacity: 0.2;
    line-height: 1;
    top: 10px;
    position: absolute;
}.user-reviews .rating-voices div {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}.user-reviews .rating-voices img {
    object-fit: cover;
    transform: scale(0.9);
    border: 3px solid white;
    border-radius: 50%;
    height: 60px;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 60px;
}.user-reviews .rating-voices:hover img {
    transform: scale(1);
}.user-reviews .rating-voices h4 {
    font-size: calc(23px * 0.9);
    margin-left: 1rem;
    position: relative;
    font-weight: 600;
    color: #000000;
}.user-reviews .rating-voices h4::after {
    left: 0;
    content: "";
    bottom: -5px;
    height: 2px;
    position: absolute;
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    width: 0;
    transition: width 0.4s ease;
}.user-reviews .rating-voices:hover h4::after {
    width: 100%;
}.user-reviews .description {
    position: relative;
    color: #000000;
    font-size: 13px;
    z-index: 1;
    line-height: 1.6;
    margin: 0;
}.user-reviews .description::first-letter {
    font-size: 1.2em;
    color: rgb(153,159,173);
    font-weight: 600;
}.user-reviews a {
    margin-top: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    left: 50%;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    transform: translateX(-50%);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}.user-reviews a::before {
    left: -100%;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgb(118,121,134), rgb(153,159,173));
    position: absolute;
    transition: left 0.4s ease;
    width: 100%;
    top: 0;
    height: 100%;
}.user-reviews a:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}.user-reviews a:hover::before {
    left: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {.user-reviews {
    padding: 4rem 0;
}.user-reviews .student-perspectives {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}.user-reviews .rating-voices {
    padding: 1.5rem;
}
}

@media (max-width: 768px) {.user-reviews {
    padding: 3rem 0;
}.user-reviews h2 {
    margin-bottom: 2rem;
    font-size: calc(35px * 0.9);
}.user-reviews .student-perspectives {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 1.25rem;
}.user-reviews .rating-voices {
    padding: 1.5rem;
}.user-reviews .rating-voices div {
    margin-bottom: 1rem;
}.user-reviews .rating-voices img {
    width: 50px;
    height: 50px;
}
}

@media (max-width: 480px) {.user-reviews {
    padding: 2.5rem 0;
}.user-reviews h2 {
    font-size: calc(35px * 0.8);
    margin-bottom: 1.5rem;
}.user-reviews .rating-voices {
    padding: 1.25rem;
}.user-reviews .rating-voices div {
    margin-bottom: 0.875rem;
}.user-reviews .rating-voices img {
    width: 45px;
    height: 45px;
}.user-reviews .description {
    font-size: calc(13px * 0.95);
}.user-reviews a {
    padding: 0.7rem 1.5rem;
    margin-top: 2rem;
}}.title-intro {
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    position: relative;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, rgb(153,159,173,0.5) 100%);
    z-index: 1;
    align-items: center;
}.title-intro .img-expand {
    height: 100%;
    left: 0;
    filter: brightness(0.7) contrast(1.1);
    width: 100%;
    animation: subtle-zoom 20s infinite alternate ease-in-out;
    z-index: -1;
    top: 0;
    position: absolute;
    transform: scale(1.05);
}.title-intro .img-expand::after {
    top: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    z-index: 1;
    position: absolute;
}.title-intro .knowledge-pro {
    gap: 2rem;
    grid-template-columns: 1fr;
    border-left: 3px solid rgb(153,159,173);
    background: rgba(255,255,255,0.12);
    width: 90%;
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: grid;
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 
                0 0 0 1px rgba(255,255,255,0.1) inset,
                0 5px 15px rgba(0,0,0,0.1);
    max-width: 1200px;
    z-index: 2;
}.title-intro .knowledge-pro:hover {
    transform: perspective(1000px) rotateY(0deg);
}.title-intro h1 {
    padding-left: 1rem;
    line-height: 1.3;
    animation: slide-in-text 0.8s 0.2s forwards cubic-bezier(0.17, 0.67, 0.45, 1);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    font-size: clamp(2rem, 5vw, 46px);
    transform: translateY(-10px);
}.title-intro h1::before {
    position: absolute;
    transform-origin: top;
    height: 100%;
    left: 0;
    animation: scale-line 0.5s 0.6s forwards cubic-bezier(0.17, 0.67, 0.45, 1);
    background: rgb(153,159,173);
    content: '';
    width: 3px;
    transform: scaleY(0);
    top: 0;
}.title-intro .text-placeholder {
    position: relative;
    opacity: 0;
    border-radius: 17px;
    animation: slide-in 0.8s 0.4s forwards cubic-bezier(0.17, 0.67, 0.45, 1);
    background: rgba(0,0,0,0.4);
    transform: translateY(20px);
    padding: 2.5rem;
}.title-intro .text-placeholder::before {
    border-radius: 17px;
    position: absolute;
    content: '';
    height: 100%;
    opacity: 0.15;
    background: linear-gradient(135deg, rgb(153,159,173,0.5) 0%, transparent 100%);
    left: 0;
    z-index: -1;
    top: 0;
    width: 100%;
}.title-intro .text-placeholder p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    max-width: 600px;
    letter-spacing: 0.02em;
    color: #ffffff;
}.title-intro .course-hero {
    margin: 2rem 0;
    display: flex;
    transform: scale(0.95);
    justify-content: center;
    transition: transform 0.4s ease;
    position: relative;
}.title-intro .course-hero:hover {
    transform: scale(1);
}.title-intro svg {
    height: 80px;
    width: 80px;
    transform-origin: center;
    animation: float 6s infinite ease-in-out;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.3));
}.title-intro svg path {
    transition: fill 0.3s ease;
    fill: rgb(153,159,173);
}.title-intro svg:hover path {
    fill: rgb(114, 200, 198);
}.title-intro svg text {
    transition: fill 0.3s ease;
    font-family: Arial, sans-serif;
}.title-intro svg:hover text {
    fill: rgb(114, 200, 198);
}.title-intro h6 {
    margin-top: 2rem;
    text-align: center;
}.title-intro .feedback-support {
    box-shadow: 0 4px 15px rgba(94, 170, 168, 0.3),
                0 0 0 1px rgba(94, 170, 168, 0.1) inset;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    font-size: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(153,159,173) 0%, rgb(74, 150, 148) 100%);
    letter-spacing: 0.04em;
    transition: all 0.3s cubic-bezier(0.17, 0.67, 0.45, 1);
    display: inline-block;
    position: relative;
    text-decoration: none;
    border-radius: 10px;
    color: #ffffff;
}.title-intro .feedback-support::before {
    width: 100%;
    content: '';
    transition: left 0.8s ease;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    left: -100%;
    height: 100%;
    top: 0;
}.title-intro .feedback-support:hover {
    box-shadow: 0 8px 20px rgba(94, 170, 168, 0.4),
                0 0 0 1px rgba(94, 170, 168, 0.2) inset;
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgb(114, 200, 198) 0%, rgb(153,159,173) 100%);
}.title-intro .feedback-support:hover::before {
    left: 100%;
}

@keyframes slide-in-text {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scale-line {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.15);
    }
}

@media (min-width: 768px) {.title-intro .knowledge-pro {
    align-items: center;
    grid-template-columns: 1fr 2fr;
    max-width: 1200px;
    gap: 3rem;
    padding: 4rem 3rem;
}.title-intro h1 {
    grid-column: 1 / 2;
    padding-right: 2rem;
    margin-bottom: 0;
}.title-intro .text-placeholder {
    grid-column: 2 / 3;
    padding: 3rem;
}.title-intro svg {
    width: 100px;
    height: 100px;
}
}

@media (min-width: 992px) {.title-intro .knowledge-pro {
    grid-template-columns: 1fr 1.5fr;
    padding: 5rem 4rem;
}.title-intro .text-placeholder {
    padding: 3.5rem;
}.title-intro h1 {
    font-size: 46px;
}.title-intro .feedback-support {
    padding: 1.2rem 3rem;
}
}

@media (max-width: 767px) {.title-intro .knowledge-pro {
    padding: 2.5rem 1.5rem;
}.title-intro h1 {
    font-size: 1.8rem;
}.title-intro .text-placeholder {
    padding: 1.8rem;
}.title-intro svg {
    height: 70px;
    width: 70px;
}.title-intro .feedback-support {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
}}.thankPageID {
    overflow: hidden;
    perspective: 1000px;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, rgba(rgb(153,159,173,0.5), 0.08) 100%);
    position: relative;
    padding: 6rem 0;
}.thankPageID::before {
    width: 200%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(rgb(118,121,134,0.5), 0.03) 0%, transparent 60%);
    opacity: 0.8;
    top: -50%;
    pointer-events: none;
    animation: orbital 30s infinite linear;
    content: "";
    height: 200%;
    transform: rotate(-12deg);
    position: absolute;
}.thankPageID::after {
    top: 0;
    pointer-events: none;
    left: 0;
    opacity: 0.4;
    content: "";
    background-size: 8rem 8rem;
    height: 100%;
    width: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(rgb(153,159,173,0.5), 0.05) 1px, transparent 2px),
        radial-gradient(circle at 30% 70%, rgba(rgb(153,159,173,0.5), 0.06) 1px, transparent 2px),
        radial-gradient(circle at 70% 40%, rgba(rgb(153,159,173,0.5), 0.05) 1px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(rgb(153,159,173,0.5), 0.05) 1px, transparent 2px);
    position: absolute;
}.thankPageID .container {
    z-index: 1;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    transform-style: preserve-3d;
    padding: 0 1.5rem;
}.thankPageID .knowledge-pro {
    flex-direction: column;
    mask-image: linear-gradient(
        to bottom right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    gap: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(
        145deg, 
        rgba(rgb(255, 255, 255, 0.5), 0.95) 0%, 
        rgba(rgb(255, 255, 255, 0.5), 0.85) 100%
    );
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.08),
        0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.05);
    padding: 3.5rem;
    display: flex;
    transform: translateZ(0);
    position: relative;
}.thankPageID .knowledge-pro:hover {
    transform: translateZ(20px) translateY(-5px);
}.thankPageID .knowledge-pro > div:first-child {
    transform: translateZ(10px);
    position: relative;
}.thankPageID .knowledge-pro > div:first-child::before {
    top: 50%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(153,159,173), transparent);
    width: 2.5rem;
    position: absolute;
    left: -3.5rem;
    transform: translateY(-50%);
}.thankPageID .knowledge-pro > div:last-child {
    position: relative;
    transform: translateZ(5px);
}.thankPageID .knowledge-pro > div:last-child::after {
    width: 2.5rem;
    height: 2px;
    content: "";
    transform: translateY(-50%);
    position: absolute;
    right: -3.5rem;
    bottom: 2rem;
    background: linear-gradient(90deg, transparent, rgb(153,159,173), transparent);
}.thankPageID h5 {
    margin: 0;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.5s ease;
    position: relative;
    padding-left: 1.5rem;
    font-size: 21px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
}.thankPageID h5::before {
    border-radius: 50%;
    left: 0;
    animation: pulse 3s infinite ease-in-out;
    top: 0.5rem;
    background: rgb(153,159,173);
    box-shadow: 0 0 10px rgba(rgb(153,159,173,0.5), 0.5);
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
}.thankPageID a {
    transition: transform 0.4s ease-out;
    text-decoration: none;
    display: block;
}.thankPageID a:hover {
    transform: translateX(5px);
}.thankPageID p {
    position: relative;
    line-height: 1.8;
    padding: 0 0 0 1.5rem;
    margin: 0;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    border-left: 1px solid rgba(rgb(153,159,173,0.5), 0.2);
}

@media (min-width: 768px) {.thankPageID {
    padding: 8rem 0;
}.thankPageID .knowledge-pro {
    gap: 3rem;
    padding: 4.5rem;
}.thankPageID h5 {
    padding-left: 2rem;
    font-size: calc(21px * 1.1);
}.thankPageID p {
    padding: 0 0 0 2rem;
    font-size: calc(16px * 1.05);
}.thankPageID .knowledge-pro > div:first-child::before {
    width: 4rem;
}.thankPageID .knowledge-pro > div:last-child::after {
    width: 4rem;
}
}

@media (min-width: 992px) {.thankPageID {
    padding: 10rem 0;
}.thankPageID .knowledge-pro {
    align-items: center;
    flex-direction: row;
    gap: 4rem;
}.thankPageID .knowledge-pro > div:first-child {
    flex: 0 0 40%;
}.thankPageID .knowledge-pro > div:last-child {
    flex: 0 0 60%;
}.thankPageID .knowledge-pro > div:first-child::before {
    right: -2rem;
    background: linear-gradient(to bottom, transparent, rgb(153,159,173), transparent);
    width: 2px;
    height: 3rem;
    top: 50%;
    left: auto;
}.thankPageID .knowledge-pro > div:last-child::after {
    height: 3rem;
    bottom: 2rem;
    right: auto;
    left: -2rem;
    background: linear-gradient(to bottom, transparent, rgb(153,159,173), transparent);
    width: 2px;
}
}

@media (min-width: 1200px) {.thankPageID .knowledge-pro {
    gap: 5rem;
    padding: 5rem;
}.thankPageID h5 {
    font-size: calc(21px * 1.2);
}.thankPageID p {
    font-size: calc(16px * 1.1);
}
}

@media (max-width: 767px) {.thankPageID {
    padding: 4rem 0;
}.thankPageID .knowledge-pro {
    padding: 2.5rem;
    gap: 2rem;
}.thankPageID h5 {
    font-size: calc(21px * 0.95);
}.thankPageID .knowledge-pro > div:first-child::before,
    .thankPageID .knowledge-pro > div:last-child::after {
    display: none;
}}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

@keyframes orbital {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}.developer-experience {
    background: rgb(188,194,213);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}.developer-experience::before {
    background: repeating-linear-gradient(
        45deg,
        rgb(153,159,173,0.5) 0,
        rgb(153,159,173,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    width: 100%;
    z-index: 1;
    top: 0;
    position: absolute;
    opacity: 0.05;
    height: 100%;
    left: 0;
    content: "";
}.developer-experience .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    padding: 0 30px;
    margin: 0 auto;
}.developer-experience .rating-voices {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
    display: grid;
    gap: 50px;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
    grid-template-columns: 350px 1fr;
    border-radius: 16px;
}.developer-experience .img-expand {
    width: 100%;
    position: relative;
    min-height: 400px;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}.developer-experience .img-expand::before {
    left: 0;
    content: "";
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    width: 100%;
    z-index: 1;
    position: absolute;
    bottom: 0;
}.developer-experience .img-expand::after {
    height: 100%;
    background: rgb(153,159,173);
    transition: opacity 0.4s ease;
    position: absolute;
    left: 0;
    opacity: 0.15;
    content: "";
    top: 0;
    width: 100%;
}.developer-experience .img-expand:hover::after {
    opacity: 0;
}.developer-experience .name {
    position: absolute;
    font-size: 18px;
    padding-bottom: 0;
    color: #ffffff;
    transition: transform 0.3s ease;
    margin: 0;
    font-family: Arial, sans-serif;
    left: 30px;
    bottom: 60px;
    z-index: 2;
    font-weight: 700;
}.developer-experience .rating-voices span:not(.name) {
    margin: 0;
    font-size: 13px;
    z-index: 2;
    opacity: 0.85;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: #ffffff;
    position: absolute;
    left: 30px;
    font-family: Arial, sans-serif;
    bottom: 30px;
}.developer-experience .img-expand:hover ~ .name,
.developer-experience .img-expand:hover ~ span:not(.name) {
    transform: translateX(5px);
}.developer-experience .experience-area {
    display: flex;
    justify-content: center;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 13px;
    padding: 50px 40px;
    margin: 0;
    position: relative;
    flex-direction: column;
    font-weight: 400;
}.developer-experience .experience-area::before {
    position: absolute;
    top: 40px;
    content: "";
    left: 40px;
    background: linear-gradient(to right bottom, 
        rgb(153,159,173) 0%, 
        rgb(153,159,173) 50%, 
        transparent 50%, 
        transparent 100%);
    width: 40px;
    opacity: 0.2;
    height: 30px;
}.developer-experience .experience-area::after {
    content: "";
    position: absolute;
    height: 30px;
    opacity: 0.2;
    width: 40px;
    background: linear-gradient(to left top, 
        rgb(118,121,134) 0%, 
        rgb(118,121,134) 50%, 
        transparent 50%, 
        transparent 100%);
    bottom: 40px;
    right: 40px;
}

@media (max-width: 992px) {.developer-experience {
    padding: 100px 0;
}.developer-experience .rating-voices {
    gap: 40px;
    grid-template-columns: 300px 1fr;
}.developer-experience .img-expand {
    min-height: 350px;
}.developer-experience .experience-area {
    padding: 40px 30px;
}.developer-experience .experience-area::before {
    top: 30px;
    width: 30px;
    left: 30px;
    height: 24px;
}.developer-experience .experience-area::after {
    bottom: 30px;
    right: 30px;
    height: 24px;
    width: 30px;
}
}

@media (max-width: 768px) {.developer-experience {
    padding: 80px 0;
}.developer-experience .container {
    padding: 0 20px;
}.developer-experience .rating-voices {
    grid-template-columns: 1fr;
    gap: 0;
}.developer-experience .img-expand {
    height: 300px;
    min-height: 300px;
}.developer-experience .experience-area {
    padding: 35px 25px;
}.developer-experience .name {
    bottom: 50px;
    left: 25px;
    font-size: calc(18px * 0.9);
}.developer-experience .rating-voices span:not(.name) {
    bottom: 25px;
    font-size: calc(13px * 0.95);
    left: 25px;
}.developer-experience .experience-area::before {
    left: 25px;
    height: 20px;
    top: 25px;
    width: 24px;
}.developer-experience .experience-area::after {
    bottom: 25px;
    right: 25px;
    height: 20px;
    width: 24px;
}
}

@media (max-width: 480px) {.developer-experience {
    padding: 60px 0;
}.developer-experience .img-expand {
    min-height: 250px;
    height: 250px;
}.developer-experience .experience-area {
    font-size: calc(13px * 0.9);
    padding: 30px 20px;
}.developer-experience .name {
    left: 20px;
    font-size: calc(18px * 0.85);
    bottom: 45px;
}.developer-experience .rating-voices span:not(.name) {
    bottom: 20px;
    left: 20px;
    font-size: calc(13px * 0.9);
}.developer-experience .experience-area::before,
    .developer-experience .experience-area::after {
    height: 16px;
    width: 20px;
}}.cookie-window-overlay {
    z-index: 90;
    width: 100%;
    padding: 15px 20px;
    background: rgb(118,121,134);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 0;
    border-top: 3px solid rgb(153,159,173);
}.cookie-box {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    display: flex;
}.gdpr-banner {
    flex-shrink: 0;
    margin-right: 20px;
}.gdpr-banner svg {
    width: 50px;
    height: 50px;
    fill: rgb(153,159,173);
}.privacy-opt {
    max-width: 600px;
    flex-direction: column;
    justify-content: center;
    display: flex;
}.cookie-window-overlay h5 {
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}.cookie-window-overlay p {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
}.cookie-gate {
    min-width: 150px;
    background: rgb(153,159,173);
    color: #ffffff;
    transition: none;
    border-radius: 10px;
    border: 2px solid rgb(153,159,173);
    padding: 10px 20px;
    flex-shrink: 0;
    cursor: pointer;
    margin-left: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
}.cookie-gate:hover {
    background: rgb(153,159,173,0.5);
    border-color: rgb(153,159,173,0.5);
}.cookie-window-overlay p a {
    color: rgb(153,159,173);
    border-bottom: 2px solid rgb(153,159,173);
    text-decoration: none;
}.cookie-window-overlay p a:hover {
    color: rgb(118,121,134);
    border-bottom-color: rgb(118,121,134);
}
@media only screen and (max-width: 1200px) {.cookie-window-overlay {
    padding: 15px;
}
}
@media only screen and (max-width: 800px) {.gdpr-banner {
    display: none;
}.cookie-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.cookie-window-overlay h5, .cookie-window-overlay p {
    text-align: center;
}.privacy-opt {
    margin-bottom: 15px;
}.cookie-gate {
    margin-top: 10px;
    margin-left: 0;
}}
#cookieBannerAlert {
    display: none;
}#cookieBannerAlert:checked ~ .cookie-window-overlay {
    opacity: 0;
    visibility: hidden;
}footer {
    position: relative;
    z-index: 1;
}footer::before {
    z-index: -2;
    content: "";
    bottom: 0;
    top: 0;
    background: linear-gradient(to right, rgb(118,121,134), rgb(153,159,173));
    position: absolute;
    opacity: 0.9;
    left: 0;
    right: 0;
}footer::after {
    content: "";
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    bottom: 0;
    z-index: -1;
    position: absolute;
    right: 0;
    top: 0;
}.workshop-cta {
    color: #ffffff;
    padding: 5rem 0 2rem;
    position: relative;
}.workshop-cta::before {
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134), rgb(153,159,173));
    left: 0;
    top: 0;
    width: 100%;
    content: "";
    height: 10px;
    position: absolute;
}.workshop-cta .container {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    display: grid;
    position: relative;
}.workshop-cta .company_holder {
    padding: 0;
    position: relative;
    grid-column: span 5;
}.workshop-cta .company_holder h3 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #ffffff;
    padding-bottom: 1rem;
    font-size: 38px;
}.workshop-cta .company_holder h3::after {
    background: #ffffff;
    height: 2px;
    position: absolute;
    left: 0;
    width: 80px;
    content: "";
    bottom: -2px;
}.workshop-cta .tutor-match {
    position: relative;
    font-size: 17px;
    color: #ffffff;
    padding: 0 0 0 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.7;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}.workshop-cta .grant-info {
    grid-column: span 7;
}.workshop-cta .head-sitewrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    display: grid;
}.workshop-cta .top-nav {
    position: relative;
}.workshop-cta .top-nav h5 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
    padding-bottom: 0.8rem;
    margin: 0 0 1.5rem;
    position: relative;
    font-size: 22px;
}.workshop-cta .top-nav h5::after {
    content: "";
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffffff;
    position: absolute;
}.workshop-cta .top-nav .head-sitewrap {
    display: grid;
    gap: 1rem;
}.workshop-cta .top-nav .head-sitewrap a {
    display: flex;
    position: relative;
    text-decoration: none;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 17px;
}.workshop-cta .top-nav .head-sitewrap a::after {
    margin-left: 0.5rem;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    content: "\2192";
    opacity: 0;
}.workshop-cta .top-nav .head-sitewrap a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}.workshop-cta .top-nav .head-sitewrap a:hover::after {
    transform: translateX(0);
    opacity: 1;
}.footer-subscribe {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}.footer-subscribe .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.footer-subscribe .debate-club {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    opacity: 0.9;
    font-size: 12px;
    color: #ffffff;
}.workshop-cta::after {
    top: 2rem;
    width: 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    content: "";
    right: 2rem;
    height: 50px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}.workshop-cta .company_holder::before {
    position: absolute;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    height: 50px;
    width: 50px;
    top: 0;
    left: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    content: "";
}.workshop-cta .company_holder::after {
    position: absolute;
    left: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    height: 50px;
    bottom: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    content: "";
}.workshop-cta .grant-info::after {
    position: absolute;
    height: 50px;
    content: "";
    bottom: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    right: 0;
    width: 50px;
}

@media (max-width: 1200px) {.workshop-cta .container {
    gap: 1.5rem;
}
}

@media (max-width: 992px) {.workshop-cta {
    padding: 4rem 0 2rem;
}.workshop-cta .container {
    grid-template-columns: 1fr;
}.workshop-cta .company_holder,
    .workshop-cta .grant-info {
    grid-column: span 12;
}.workshop-cta .company_holder {
    margin-bottom: 2rem;
}.workshop-cta::after,
    .workshop-cta .company_holder::before,
    .workshop-cta .company_holder::after,
    .workshop-cta .grant-info::after {
    display: none;
}
}

@media (max-width: 768px) {.workshop-cta {
    padding: 3rem 0 1.5rem;
}.workshop-cta .head-sitewrap {
    gap: 1.5rem;
}.workshop-cta .company_holder h3 {
    font-size: calc(38px - 2px);
}.footer-subscribe {
    margin-top: 3rem;
}
}

@media (max-width: 576px) {.workshop-cta {
    padding: 2.5rem 0 1rem;
}.workshop-cta .head-sitewrap {
    grid-template-columns: 1fr;
    gap: 2rem;
}.workshop-cta .tutor-match {
    padding-left: 1rem;
}.footer-subscribe {
    margin-top: 2rem;
}
}

@media (max-width: 420px) {.workshop-cta .company_holder h3::after,
    .workshop-cta .top-nav h5::after {
    width: 30px;
}.workshop-cta .top-nav .head-sitewrap a:hover {
    padding-left: 0.3rem;
}}.privacy-hold {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgb(118,121,134,0.5) 0%, rgb(188,194,213) 100%);
    overflow: hidden;
    position: relative;
}.privacy-hold::before {
    background: radial-gradient(circle at 70% 30%, rgb(118,121,134,0.5) 0%, transparent 70%);
    z-index: 0;
    height: 100%;
    width: 100%;
    top: 0;
    content: "";
    left: 0;
    opacity: 0.4;
    position: absolute;
}.privacy-hold::after {
    z-index: 0;
    bottom: -50px;
    content: "";
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, rgb(153,159,173,0.5) 0%, transparent 70%);
    opacity: 0.2;
    transform: rotate(-15deg);
    position: absolute;
    right: -50px;
}.privacy-hold .container {
    margin: 0 auto;
    transform: perspective(1000px) rotateX(0.5deg);
    max-width: 1140px;
    z-index: 1;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}.privacy-hold h1 {
    position: relative;
    transform: translateX(-10px);
    color: rgb(153,159,173);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-size: 43px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    padding-left: 20px;
}.privacy-hold h1::before {
    content: "";
    left: 0;
    top: 15%;
    transform: skewY(-15deg);
    width: 5px;
    height: 70%;
    position: absolute;
    background: rgb(118,121,134);
}.privacy-hold h2 {
    font-size: 33px;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: Arial, sans-serif;
    color: rgb(118,121,134);
    position: relative;
    padding-bottom: 12px;
}.privacy-hold h2::after {
    bottom: 0;
    position: absolute;
    left: 0;
    content: "";
    background: linear-gradient(90deg, rgb(118,121,134) 0%, rgb(118,121,134,0.5) 100%);
    width: 80px;
    height: 3px;
}.privacy-hold h3 {
    position: relative;
    padding-left: 15px;
    color: #000000;
    margin-top: 2.5rem;
    font-size: calc(33px * 0.8);
    font-family: Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 1.25rem;
}.privacy-hold h3::before {
    content: "";
    width: 3px;
    position: absolute;
    left: 0;
    background: rgb(118,121,134,0.5);
    height: 100%;
    top: 0;
}.privacy-hold h4 {
    font-weight: 600;
    font-size: calc(33px * 0.7);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 10px;
    color: #000000;
    font-family: Arial, sans-serif;
    position: relative;
}.privacy-hold h4::before {
    background: rgb(118,121,134,0.5);
    height: 50%;
    width: 2px;
    left: 0;
    position: absolute;
    top: 25%;
    content: "";
}.privacy-hold p {
    font-family: Arial, sans-serif;
    position: relative;
    max-width: 95%;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #000000;
    font-size: 17px;
}.privacy-hold strong {
    font-weight: 600;
    color: rgb(118,121,134);
    display: inline-block;
    position: relative;
}.privacy-hold ul {
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    background: linear-gradient(90deg, rgb(118,121,134,0.5) 0%, transparent 3%);
    position: relative;
    list-style: none;
    border-left: 3px solid rgb(118,121,134);
    margin: 2rem 0;
    padding-left: 1.5rem;
}.privacy-hold li {
    line-height: 1.7;
    font-size: 17px;
    color: #000000;
    position: relative;
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
}.privacy-hold li::before {
    transform: rotate(45deg);
    top: 0.6rem;
    width: 8px;
    content: "";
    height: 8px;
    left: -1.5rem;
    background: rgb(118,121,134);
    position: absolute;
}.privacy-hold span {
    display: block;
    padding-left: 1rem;
    border-left: 1px dashed rgb(118,121,134,0.5);
    margin-bottom: 1.5rem;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
}.privacy-hold *:last-child {
    margin-bottom: 0;
}.privacy-hold .container > *:first-child {
    margin-top: 0;
}

@media (max-width: 991px) {.privacy-hold {
    padding: 4rem 1.5rem;
}.privacy-hold .container {
    padding: 2.5rem;
    transform: perspective(1000px) rotateX(0.3deg);
}.privacy-hold h1 {
    font-size: calc(43px * 0.9);
}.privacy-hold h2 {
    font-size: calc(33px * 0.9);
}.privacy-hold ul {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
}
}

@media (max-width: 767px) {.privacy-hold {
    padding: 3rem 1rem;
}.privacy-hold .container {
    transform: none;
    padding: 2rem 1.5rem;
}.privacy-hold h1 {
    font-size: calc(43px * 0.8);
    padding-left: 15px;
}.privacy-hold h1::before {
    width: 4px;
}.privacy-hold h2 {
    font-size: calc(33px * 0.8);
}.privacy-hold h3 {
    font-size: calc(33px * 0.7);
}.privacy-hold h4 {
    font-size: calc(33px * 0.6);
}.privacy-hold p, 
    .privacy-hold li,
    .privacy-hold span {
    max-width: 100%;
    font-size: calc(17px * 0.95);
}.privacy-hold ul {
    padding: 1rem 1rem 1rem 2rem;
    margin: 1.5rem 0;
}
}

@media (max-width: 480px) {.privacy-hold {
    padding: 2rem 0.75rem;
}.privacy-hold .container {
    padding: 1.5rem 1.25rem;
}.privacy-hold h1 {
    font-size: calc(43px * 0.7);
}.privacy-hold h2 {
    font-size: calc(33px * 0.7);
}.privacy-hold h2::after {
    width: 60px;
}.privacy-hold h3 {
    font-size: calc(33px * 0.6);
}.privacy-hold h4 {
    font-size: calc(33px * 0.5);
}.privacy-hold p, 
    .privacy-hold li,
    .privacy-hold span {
    font-size: calc(17px * 0.9);
}}.program-assets {
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(153,159,173,0.5) 0%, rgb(188,194,213) 100%);
    position: relative;
}.program-assets::before {
    opacity: 0.4;
    position: absolute;
    content: '';
    top: -50%;
    height: 200%;
    z-index: 0;
    left: -50%;
    background: radial-gradient(circle at center, rgb(118,121,134,0.5) 0%, transparent 60%);
    width: 200%;
}.program-assets::after {
    top: 0;
    position: absolute;
    opacity: 0.2;
    width: 100%;
    left: 0;
    height: 100%;
    content: '';
    z-index: 0;
}.program-assets .knowledge-pro {
    position: relative;
    z-index: 1;
    flex-direction: column;
    max-width: 1280px;
    display: flex;
    margin: 0 auto;
    padding: 0 20px;
}.program-assets h2 {
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 60px;
    font-size: 46px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}.program-assets h2::after {
    height: 4px;
    border-radius: 10px;
    transform: translateX(-50%);
    position: absolute;
    content: '';
    background: rgb(118,121,134);
    left: 50%;
    width: 100px;
    bottom: 0;
}.program-assets .knowledge-pro > div:not(.text_holder):not(.text_main_holder):not(.photo) {
    flex-wrap: wrap;
    align-items: stretch;
    display: flex;
    gap: 60px;
}.program-assets .img-expand {
    min-height: 450px;
    position: relative;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 320px;
    border-radius: 17px;
    overflow: hidden;
}.program-assets .img-expand::before {
    width: 100%;
    top: 0;
    height: 100%;
    background: linear-gradient(45deg, rgb(153,159,173,0.5) 0%, transparent 60%);
    left: 0;
    z-index: 1;
    position: absolute;
    content: '';
}.program-assets .img-expand::after {
    opacity: 0.2;
    width: 70px;
    z-index: 2;
    border-radius: 50%;
    top: 30px;
    border: 3px solid #ffffff;
    right: 30px;
    position: absolute;
    content: '';
    height: 70px;
}.program-assets .text-placeholder {
    position: relative;
    flex: 1.5;
    display: flex;
    min-width: 320px;
    flex-direction: column;
}.program-assets .text-placeholder::before {
    content: '';
    left: -30px;
    opacity: 0.3;
    border: 2px solid rgb(118,121,134,0.5);
    z-index: -1;
    border-radius: 17px;
    height: 120px;
    position: absolute;
    width: 120px;
    transform: rotate(45deg);
    bottom: -30px;
}.program-assets .text_main_holder {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    display: grid;
}.program-assets .text_main_holder > div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    padding: 25px;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}.program-assets .text_main_holder > div::before {
    top: 0;
    width: 5px;
    background: rgb(118,121,134);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    opacity: 0.7;
}.program-assets .text_main_holder > div::after {
    left: 0;
    background: linear-gradient(135deg, rgb(118,121,134,0.5) 0%, transparent 100%);
    height: 100%;
    top: 0;
    content: '';
    opacity: 0.05;
    width: 100%;
    z-index: -1;
    position: absolute;
}.program-assets .text_main_holder > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}.program-assets .text_main_holder svg {
    height: 32px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
    width: 32px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}.program-assets .text_main_holder > div:hover svg {
    transform: scale(1.1);
}.program-assets .text_main_holder svg path {
    transition: fill 0.3s ease;
    fill: rgb(153,159,173);
}.program-assets .text_main_holder > div:hover svg path {
    fill: rgb(118,121,134);
}.program-assets .text_main_holder p {
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
    color: #ffffff;
}

@media (min-width: 992px) {.program-assets .knowledge-pro > div:not(.text_holder):not(.text_main_holder):not(.photo) {
    flex-direction: row;
}.program-assets .text-placeholder {
    padding-left: 30px;
}
}

@media (max-width: 991px) {.program-assets .knowledge-pro > div:not(.text_holder):not(.text_main_holder):not(.photo) {
    gap: 40px;
    flex-direction: column;
}.program-assets .img-expand {
    min-height: 350px;
}.program-assets h2 {
    margin-bottom: 50px;
}
}

@media (max-width: 768px) {.program-assets {
    padding: 80px 0;
}.program-assets h2 {
    font-size: calc(46px * 0.8);
    margin-bottom: 40px;
}.program-assets .text_main_holder {
    gap: 20px;
    grid-template-columns: 1fr;
}
}

@media (max-width: 576px) {.program-assets {
    padding: 60px 0;
}.program-assets .img-expand {
    min-height: 250px;
}.program-assets h2 {
    font-size: 31px;
}.program-assets .text_main_holder > div {
    padding: 20px;
}.program-assets .text_main_holder svg {
    height: 28px;
    width: 28px;
}}.our-story {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: rgb(188,194,213);
}.our-story::before {
    top: 0;
    opacity: 0.1;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(153,159,173,0.5) 0,
        rgb(153,159,173,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    content: "";
    left: 0;
}.our-story .container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}.our-story .knowledge-pro {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    display: grid;
}.our-story h3 {
    margin-bottom: 50px;
    color: #000000;
    position: relative;
    font-size: 32px;
    display: inline-block;
    grid-column: 1 / 4;
    font-weight: 700;
    padding-bottom: 20px;
}.our-story h3::after {
    bottom: 0;
    background: rgb(153,159,173);
    width: 80px;
    height: 4px;
    left: 0;
    content: "";
    position: absolute;
}.our-story .class-space {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
    border-radius: 15px;
    padding: 40px;
    padding-right: 300px;
    position: relative;
    grid-row: 2 / 3;
    z-index: 2;
    grid-column: 2 / 3;
    background: #ffffff;
}.our-story .class-space:hover {
    transform: translateX(0);
}.our-story .class-space span {
    color: rgb(153,159,173);
    font-size: 22px;
    position: relative;
    display: block;
    font-weight: 600;
    margin-bottom: 20px;
}.our-story .class-space span::before {
    left: -40px;
    background: rgb(153,159,173);
    width: 30px;
    top: 50%;
    position: absolute;
    content: "";
    transform: translateY(-50%);
    height: 2px;
}.our-story .class-space p {
    line-height: 1.7;
    margin-bottom: 0;
    color: #000000;
    font-size: 17px;
}.our-story .class-space .img-expand {
    border-radius: 0 15px 15px 0;
    height: 350px;
    right: -30px;
    width: 280px;
    box-shadow: 10px 10px 0 rgb(118,121,134,0.5);
    z-index: -1;
    position: absolute;
    top: -30px;
}.our-story .learning-classes {
    border-radius: 15px;
    transition: transform 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    grid-row: 3 / 4;
    padding: 40px;
    margin-top: 40px;
    background: #ffffff;
    grid-column: 2 / 4;
    padding-left: 300px;
    position: relative;
    z-index: 2;
}.our-story .learning-classes:hover {
    transform: translateX(0);
}.our-story .learning-classes p {
    font-size: 17px;
    margin-bottom: 0;
    line-height: 1.7;
    position: relative;
    color: #000000;
    padding-right: 20px;
}.our-story .learning-classes p::after {
    background: rgb(118,121,134);
    width: 30px;
    top: 30px;
    position: absolute;
    content: "";
    right: -40px;
    height: 2px;
}.our-story .learning-classes .instructor-bio {
    height: 350px;
    width: 280px;
    box-shadow: -10px 10px 0 rgb(153,159,173,0.5);
    z-index: -1;
    position: absolute;
    left: -30px;
    border-radius: 15px 0 0 15px;
    top: -30px;
}.our-story .knowledge-pro::after {
    right: -100px;
    z-index: 0;
    position: absolute;
    width: 200px;
    content: "";
    top: 100px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid rgb(118,121,134,0.5);
}.our-story .knowledge-pro::before {
    width: 150px;
    z-index: 0;
    content: "";
    border-radius: 50%;
    height: 150px;
    left: -70px;
    border: 3px solid rgb(153,159,173,0.5);
    bottom: 50px;
    position: absolute;
}.our-story .container::before {
    background: linear-gradient(to right, transparent, rgb(153,159,173,0.5), transparent);
    right: 0;
    position: absolute;
    top: 0;
    height: 1px;
    content: "";
    left: 0;
}.our-story .container::after {
    left: 0;
    height: 1px;
    content: "";
    right: 0;
    position: absolute;
    background: linear-gradient(to right, transparent, rgb(118,121,134,0.5), transparent);
    bottom: 0;
}.our-story .class-space::before {
    opacity: 0.3;
    border-radius: 50%;
    top: -20px;
    content: "";
    width: 80px;
    background: rgb(153,159,173,0.5);
    height: 80px;
    z-index: -1;
    left: -20px;
    position: absolute;
}.our-story .learning-classes::after {
    border-radius: 50%;
    z-index: -1;
    right: -20px;
    width: 80px;
    position: absolute;
    content: "";
    opacity: 0.3;
    bottom: -20px;
    background: rgb(118,121,134,0.5);
    height: 80px;
}

@media screen and (max-width: 1200px) {.our-story .container {
    padding: 0 30px;
}.our-story .class-space {
    padding-right: 250px;
}.our-story .learning-classes {
    padding-left: 250px;
}.our-story .class-space .img-expand,
    .our-story .learning-classes .instructor-bio {
    width: 220px;
    height: 280px;
}
}

@media screen and (max-width: 992px) {.our-story {
    padding: 80px 0;
}.our-story .knowledge-pro {
    grid-template-columns: 1fr;
    grid-gap: 30px;
}.our-story h3 {
    font-size: calc(32px * 0.9);
    grid-column: 1 / 2;
    margin-bottom: 30px;
}.our-story .class-space {
    transform: translateX(0);
    margin-bottom: 60px;
    grid-column: 1 / 2;
    padding: 30px;
    padding-bottom: 250px;
}.our-story .learning-classes {
    transform: translateX(0);
    margin-top: 60px;
    grid-column: 1 / 2;
    padding-top: 250px;
    grid-row: 3 / 4;
    padding: 30px;
}.our-story .class-space span::before,
    .our-story .learning-classes p::after {
    display: none;
}.our-story .class-space .img-expand {
    left: 30px;
    height: 200px;
    top: auto;
    width: calc(100% - 60px);
    right: 30px;
    bottom: 30px;
}.our-story .learning-classes .instructor-bio {
    left: 30px;
    top: 30px;
    height: 200px;
    right: 30px;
    width: calc(100% - 60px);
}.our-story .knowledge-pro::after,
    .our-story .knowledge-pro::before {
    display: none;
}
}

@media screen and (max-width: 768px) {.our-story {
    padding: 60px 0;
}.our-story .class-space {
    padding-bottom: 220px;
}.our-story .learning-classes {
    padding-top: 220px;
}.our-story .class-space .img-expand {
    height: 180px;
}.our-story .learning-classes .instructor-bio {
    height: 180px;
}
}

@media screen and (max-width: 576px) {.our-story {
    padding: 50px 0;
}.our-story h3 {
    font-size: calc(32px * 0.8);
    margin-bottom: 25px;
}.our-story h3::after {
    height: 3px;
    width: 60px;
}.our-story .class-space,
    .our-story .learning-classes {
    padding: 25px;
}.our-story .class-space {
    padding-bottom: 200px;
    margin-bottom: 40px;
}.our-story .learning-classes {
    margin-top: 70px;
    padding-top: 200px;
}.our-story .class-space span {
    font-size: calc(22px * 0.9);
    margin-bottom: 15px;
}.our-story .class-space p,
    .our-story .learning-classes p {
    font-size: calc(17px * 0.95);
}.our-story .class-space .img-expand {
    right: 25px;
    width: calc(100% - 50px);
    bottom: 25px;
    height: 180px;
}.our-story .learning-classes .instructor-bio {
    left: 25px;
    top: 25px;
    width: calc(100% - 50px);
    height: 180px;
}.our-story .class-space::before,
    .our-story .learning-classes::after {
    width: 60px;
    height: 60px;
}
}

@media screen and (max-width: 480px) {.our-story {
    padding: 40px 0;
}.our-story .container {
    padding: 0 20px;
}.our-story h3 {
    margin-bottom: 20px;
    font-size: calc(32px * 0.7);
}.our-story .class-space,
    .our-story .learning-classes {
    padding: 20px;
}.our-story .class-space {
    padding-bottom: 170px;
}.our-story .learning-classes {
    padding-top: 170px;
}.our-story .class-space .img-expand,
    .our-story .learning-classes .instructor-bio {
    height: 150px;
}}.plan-block {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}.plan-block::before {
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(145deg, rgba(0,0,0,0.85) 0%, rgba(20,30,50,0.95) 100%);
    content: "";
    left: 0;
}.plan-block .container {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
}.plan-block .plan-deals {
    flex-direction: column;
    align-items: center;
    display: flex;
}.plan-block h2 {
    transform: translateY(0);
    color: #ffffff;
    font-weight: 700;
    animation: float 6s ease-in-out infinite;
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    position: relative;
}.plan-block h2::after {
    height: 3px;
    left: 50%;
    position: absolute;
    content: "";
    bottom: -10px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    width: 80px;
}.plan-block .learning-plan {
    line-height: 1.6;
    margin: 0 auto 50px;
    font-size: 13px;
    color: rgb(255, 255, 255, 0.5);
    text-align: center;
    max-width: 800px;
}.plan-block .indv-cost {
    display: grid;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    list-style: none;
}.plan-block .indv-cost li {
    perspective: 1000px;
}.plan-block .fee-plans {
    transform-style: preserve-3d;
    display: block;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-sizing: border-box;
    height: 100%;
    text-decoration: none;
}.plan-block .fee-plans:hover {
    transform: translateY(-10px) rotateY(2deg);
}.plan-block .learning-fee {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.1);
    padding: 35px 30px;
    box-sizing: border-box;
    border-radius: 8px;
    display: flex;
    position: relative;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 100%);
    overflow: hidden;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    height: 100%;
}.plan-block .learning-fee::before {
    width: 100%;
    position: absolute;
    transform-origin: left;
    content: "";
    left: 0;
    transition: transform 0.4s ease;
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    top: 0;
    transform: scaleX(0.5);
    height: 5px;
}.plan-block .fee-plans:hover .learning-fee::before {
    transform: scaleX(1);
}.plan-block .cert-plans {
    height: 100%;
    box-sizing: border-box;
    flex-direction: column;
    display: flex;
}.plan-block .fee-plans h4 {
    font-weight: 700;
    margin: 0 0 20px;
    position: relative;
    color: #ffffff;
    font-size: calc(20px * 1.2);
}.plan-block .fee-plans h4::after {
    width: 40px;
    background-color: rgb(153,159,173);
    bottom: -10px;
    left: 0;
    position: absolute;
    height: 2px;
    content: "";
}.plan-block .fee-plans p {
    line-height: 1.6;
    margin: 0 0 25px;
    white-space: normal;
    font-size: 13px;
    flex-grow: 1;
    overflow-wrap: break-word;
    color: rgb(255, 255, 255, 0.5);
    word-wrap: break-word;
}.plan-block .learn-packs {
    color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block;
    transition: all 0.3s ease;
    align-self: flex-start;
    padding: 10px 20px;
    font-size: calc(20px * 1.4);
    transform: translateZ(10px);
    background: linear-gradient(135deg, rgb(153,159,173,0.5) 0%, rgb(118,121,134,0.5) 100%);
    font-weight: 700;
}.plan-block .fee-plans:hover .learn-packs {
    transform: translateZ(15px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1200px) {.plan-block {
    padding: 100px 0;
}.plan-block .indv-cost {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
}

@media (max-width: 992px) {.plan-block {
    padding: 80px 0;
}.plan-block .indv-cost {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}.plan-block h2 {
    font-size: calc(36px * 0.9);
}
}

@media (max-width: 768px) {.plan-block {
    padding: 60px 0;
}.plan-block .indv-cost {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 500px;
}.plan-block .learning-plan {
    margin-bottom: 40px;
}.plan-block h2 {
    font-size: calc(36px * 0.8);
}.plan-block .learning-fee {
    padding: 30px 25px;
}
}

@media (max-width: 576px) {.plan-block {
    padding: 50px 0;
}.plan-block h2 {
    font-size: calc(36px * 0.7);
}.plan-block .learning-plan {
    font-size: calc(13px * 0.9);
    margin-bottom: 30px;
}.plan-block .learning-fee {
    padding: 25px 20px;
}.plan-block .fee-plans h4 {
    font-size: calc(20px * 1.1);
}.plan-block .fee-plans p {
    font-size: calc(13px * 0.9);
}.plan-block .learn-packs {
    font-size: calc(20px * 1.2);
    padding: 8px 16px;
}}.info-hub {
    position: relative;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, rgba(rgb(153,159,173), 0.05) 100%);
    overflow: hidden;
    padding: 6rem 0;
    perspective: 1000px;
}.info-hub::before {
    content: "";
    width: 110%;
    transform: rotateX(45deg) rotateZ(-2deg);
    pointer-events: none;
    z-index: 0;
    height: 110%;
    top: -5%;
    background: repeating-linear-gradient(
        45deg,
        rgba(rgb(153,159,173), 0.01),
        rgba(rgb(153,159,173), 0.02) 2px,
        transparent 2px,
        transparent 8px
    );
    position: absolute;
    left: -5%;
}.info-hub .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 1;
    padding: 0 2rem;
}.info-hub .contact-map {
    box-shadow: 0 20px 40px rgba(#000000, 0.08), 
                0 0 0 1px rgba(rgb(153,159,173), 0.05),
                0 4px 0 rgba(rgb(153,159,173), 0.3);
    grid-template-columns: 1fr;
    padding: 3rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    gap: 2.5rem;
    background: rgba(#ffffff, 0.9);
    transform: translateZ(0);
    display: grid;
    backdrop-filter: blur(10px);
    position: relative;
}.info-hub .contact-map:hover {
    box-shadow: 0 25px 50px rgba(#000000, 0.1), 
                0 0 0 1px rgba(rgb(153,159,173), 0.08),
                0 6px 0 rgba(rgb(153,159,173), 0.4);
    transform: translateY(-5px) translateZ(10px);
}.info-hub h3 {
    transform-origin: left center;
    margin: 0 0 1.5rem;
    color: #000000;
    font-weight: 700;
    transition: transform 0.3s ease-out;
    padding-bottom: 0.75rem;
    position: relative;
    font-size: calc(28px * 1.2);
}.info-hub h3::after {
    left: 0;
    height: 4px;
    width: 4rem;
    transform: scaleX(1);
    bottom: 0;
    position: absolute;
    content: "";
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: left;
    background: rgb(153,159,173);
}.info-hub .contact-map:hover h3::after {
    transform: scaleX(1.5);
}.info-hub p {
    line-height: 1.7;
    transition: transform 0.3s ease-out;
    font-size: 15px;
    margin-bottom: 1.5rem;
    color: #000000;
}.info-hub div > p {
    transform: translateZ(5px);
}.info-hub h5 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
    align-items: center;
    font-size: 22px;
    display: flex;
    text-transform: capitalize;
}.info-hub h5 svg {
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-left: 0.75rem;
}.info-hub h5:hover svg {
    transform: translateY(-3px);
}.info-hub svg {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}.info-hub svg path {
    fill: rgb(153,159,173);
    transition: fill 0.3s ease, transform 0.3s ease;
}.info-hub .msg-page {
    margin: 1.5rem 0 0;
    display: flex;
    list-style: none;
    flex-direction: column;
    padding: 0;
    gap: 1.25rem;
}.info-hub .reach-out {
    font-size: calc(15px * 1.05);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(rgb(153,159,173), 0.05);
    border-left: 3px solid rgb(153,159,173);
    display: flex;
    align-items: center;
    color: #000000;
    transform: translateX(0);
    text-decoration: none;
    font-weight: 600;
}.info-hub .reach-out:hover {
    transform: translateX(5px);
    border-left: 6px solid rgb(153,159,173);
    background: rgba(rgb(153,159,173), 0.1);
}.info-hub .reach-out svg {
    transform: rotate(0);
    margin-left: auto;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}.info-hub .reach-out:hover svg {
    transform: rotate(15deg) scale(1.1);
}.info-hub .reach-out:hover svg path {
    fill: rgb(118,121,134);
}.info-hub .reach-out:active {
    transform: translateX(5px) scale(0.98);
}

@media (min-width: 768px) {.info-hub {
    padding: 8rem 0;
}.info-hub .contact-map {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 4rem;
}.info-hub h3 {
    grid-column: 1 / -1;
    font-size: calc(28px * 1.4);
}.info-hub .msg-page {
    margin: 0;
    grid-column: 2 / 3;
    grid-row: 2 / 4;
}.info-hub::after {
    z-index: 0;
    position: absolute;
    right: -5%;
    background: linear-gradient(135deg, rgba(rgb(153,159,173), 0.2), rgba(rgb(118,121,134), 0.1));
    top: 20%;
    filter: blur(60px);
    opacity: 0.6;
    content: "";
    height: 300px;
    border-radius: 50%;
    width: 300px;
}
}

@media (min-width: 992px) {.info-hub .contact-map {
    gap: 4rem;
    grid-template-columns: 3fr 2fr;
}.info-hub h3 {
    font-size: calc(47px * 0.9);
}.info-hub .reach-out {
    font-size: calc(15px * 1.1);
    padding: 1rem 1.5rem;
}.info-hub::before {
    transform: rotateX(55deg) rotateZ(-5deg);
}.info-hub .contact-map {
    transform-style: preserve-3d;
}.info-hub .contact-map > div:not(:first-child) {
    transform: translateZ(10px);
}@keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    .info-hub .msg-page {
    position: relative;
}.info-hub .msg-page::before {
    inset: -20px;
    background: linear-gradient(45deg, rgba(rgb(153,159,173), 0.03), rgba(rgb(118,121,134), 0.02));
    content: "";
    border-radius: 23px;
    position: absolute;
    z-index: -1;
    transform: translateZ(-5px);
}
}

@media (max-width: 767px) {.info-hub {
    padding: 4rem 0;
}.info-hub .contact-map {
    padding: 2rem;
}.info-hub h3 {
    font-size: calc(28px * 1.1);
}.info-hub .reach-out {
    padding: 0.75rem 1rem;
}
}

@media (hover: hover) {.info-hub .reach-out:hover svg path {
    animation: pulse 1s infinite alternate;
}@keyframes pulse {
        0% { fill: rgb(153,159,173); }
        100% { fill: rgb(118,121,134); }
    }
}.contact-form-section {
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(90deg, #ffffff 50%, rgb(188,194,213) 50%);
    position: relative;
}.contact-form-section::before {
    position: absolute;
    content: "";
    top: 0;
    z-index: 0;
    width: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 20%);
    left: 0;
    background-size: 60px 60px;
    height: 100%;
}.contact-form-section .container {
    z-index: 1;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}.contact-form-section h2 {
    color: rgb(153,159,173);
    position: relative;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 60px;
    text-align: center;
}.contact-form-section h2::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    height: 3px;
    width: 60px;
    background: rgb(153,159,173);
}.contact-form-section .message-map {
    overflow: hidden;
    background: #ffffff;
    position: relative;
    border-radius: 17px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    display: flex;
}.contact-form-section .message-map::before {
    content: "";
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgb(153,159,173), rgb(118,121,134));
    left: 0;
    height: 5px;
    top: 0;
}.contact-form-section .img-expand {
    min-height: 550px;
    flex: 0 0 50%;
    transition: all 0.5s ease;
    position: relative;
}.contact-form-section .img-expand::after {
    content: "";
    left: 0;
    top: 0;
    background: linear-gradient(45deg, rgb(153,159,173,0.5), transparent);
    position: absolute;
    height: 100%;
    width: 100%;
}.contact-form-section .inquiry-request {
    flex: 0 0 50%;
    padding: 60px 50px;
    background: #ffffff;
    position: relative;
}.contact-form-section .inquiry-request::before {
    background: rgb(188,194,213);
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 10px;
}.contact-form-section #contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}.contact-form-section h3 {
    font-weight: 600;
    padding-bottom: 10px;
    color: #000000;
    display: inline-block;
    font-size: 20px;
    position: relative;
    margin-bottom: 20px;
}.contact-form-section h3::after {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: rgb(153,159,173,0.5);
    content: "";
    left: 0;
}.contact-form-section input[type="text"] {
    width: 100%;
    color: #000000;
    padding: 18px 20px;
    border: 2px solid rgb(188,194,213);
    background: #ffffff;
    border-radius: 10px;
    font-size: 17px;
    transition: all 0.3s ease;
}.contact-form-section input[type="text"]:focus {
    border-color: rgb(153,159,173);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    outline: none;
}.contact-form-section input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.6;
}.contact-form-section .connect-inquiry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}.contact-form-section .connect-inquiry input[type="checkbox"] {
    height: 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 24px;
    appearance: none;
    margin-top: 2px;
    position: relative;
    cursor: pointer;
    border: 2px solid rgb(188,194,213);
}.contact-form-section .connect-inquiry input[type="checkbox"]:checked {
    border-color: rgb(153,159,173);
    background: rgb(153,159,173);
}.contact-form-section .connect-inquiry input[type="checkbox"]:checked::after {
    left: 8px;
    top: 5px;
    width: 6px;
    content: "";
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    height: 10px;
    border-bottom: 2px solid #ffffff;
    position: absolute;
}.contact-form-section .connect-inquiry label {
    font-size: 17px;
    color: #000000;
    line-height: 1.5;
}.contact-form-section .connect-inquiry a {
    color: rgb(153,159,173);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}.contact-form-section .connect-inquiry a:hover {
    color: rgb(118,121,134);
}.contact-form-section .feedback-support {
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-top: 20px;
    padding: 16px 40px;
    background: rgb(153,159,173);
    position: relative;
    cursor: pointer;
    color: #ffffff;
    box-shadow: 0 8px 20px rgb(153,159,173,0.5);
    font-weight: 600;
    overflow: hidden;
    font-size: 20px;
    border: none;
    align-self: flex-start;
}.contact-form-section .feedback-support::before {
    top: 0;
    content: "";
    width: 100%;
    transition: all 0.6s ease;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    position: absolute;
    left: -100%;
}.contact-form-section .feedback-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(118,121,134,0.5);
    background: rgb(118,121,134);
}.contact-form-section .feedback-support:hover::before {
    left: 100%;
}.contact-form-section svg {
    width: 22px;
    height: 22px;
    fill: rgb(153,159,173);
    transition: all 0.3s ease;
}.contact-form-section svg path {
    transition: all 0.3s ease;
    fill: rgb(153,159,173);
}.contact-form-section svg:hover {
    fill: rgb(118,121,134);
    transform: translateY(-2px);
}.contact-form-section svg:hover path {
    fill: rgb(118,121,134);
}

@media (max-width: 1200px) {.contact-form-section {
    background: #ffffff;
}
}

@media (max-width: 992px) {.contact-form-section {
    padding: 80px 0;
}.contact-form-section .message-map {
    flex-direction: column-reverse;
}.contact-form-section .img-expand {
    min-height: 350px;
    flex: 0 0 auto;
}.contact-form-section .inquiry-request {
    padding: 50px 40px;
    flex: 0 0 auto;
}.contact-form-section .inquiry-request::before {
    top: 0;
    left: 0;
    height: 10px;
    width: 100%;
}
}

@media (max-width: 768px) {.contact-form-section {
    padding: 60px 0;
}.contact-form-section h2 {
    margin-bottom: 40px;
    font-size: calc(28px - 4px);
}.contact-form-section .inquiry-request {
    padding: 40px 30px;
}.contact-form-section #contact {
    gap: 25px;
}.contact-form-section .img-expand {
    min-height: 300px;
}
}

@media (max-width: 576px) {.contact-form-section {
    padding: 50px 0;
}.contact-form-section .container {
    padding: 0 15px;
}.contact-form-section h2 {
    margin-bottom: 30px;
    font-size: calc(28px - 6px);
}.contact-form-section .inquiry-request {
    padding: 35px 25px;
}.contact-form-section #contact {
    gap: 20px;
}.contact-form-section input[type="text"] {
    padding: 15px;
}.contact-form-section .feedback-support {
    padding: 15px 25px;
    width: 100%;
}.contact-form-section .img-expand {
    min-height: 250px;
}}.learning-system {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(188,194,213) 0%, #ffffff 100%);
}.learning-system::before {
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 10% 20%, rgb(118,121,134,0.5) 0%, transparent 60%);
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
}.learning-system::after {
    top: -50px;
    opacity: 0.08;
    content: "";
    background: rgb(153,159,173,0.5);
    z-index: 0;
    transform: rotate(-15deg);
    position: absolute;
    animation: float 12s infinite ease-in-out;
    right: -50px;
    width: 250px;
    height: 250px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}.learning-system .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}.learning-system .knowledge-pro {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    justify-content: center;
    transform: perspective(1000px) rotateX(2deg);
    align-items: center;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 3rem;
}.learning-system .knowledge-pro:hover {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.learning-system .knowledge-pro > div {
    max-width: 800px;
    position: relative;
}.learning-system .knowledge-pro > div::before {
    animation: line-appear 1.2s 0.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
    width: 4px;
    transform-origin: top;
    position: absolute;
    transform: scaleY(0);
    left: -2rem;
    content: "";
    top: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgb(153,159,173), rgb(118,121,134));
}.learning-system h3 {
    margin-bottom: 1.5rem;
    opacity: 0;
    font-size: calc(35px * 0.85);
    transform: translateX(-20px);
    letter-spacing: -0.02em;
    color: #000000;
    animation: slide-in 0.8s 0.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    font-weight: 700;
    font-family: Arial, sans-serif;
}.learning-system h3::after {
    transform-origin: left;
    transform: scaleX(0);
    left: 0;
    bottom: -0.5rem;
    position: absolute;
    background: rgb(118,121,134);
    width: 80px;
    height: 3px;
    content: "";
    animation: line-grow 1s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
}.learning-system p {
    margin-bottom: 0;
    opacity: 0;
    animation: fade-up 0.8s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
    font-family: Arial, sans-serif;
    transform: translateY(20px);
    line-height: 1.8;
    color: #000000;
    position: relative;
    font-size: 12px;
}.learning-system p span {
    position: relative;
    padding-right: 0.5rem;
    display: inline-block;
}.learning-system p span::before {
    transform-origin: left;
    left: 0;
    background: linear-gradient(to right, rgb(118,121,134,0.5), transparent);
    opacity: 0.3;
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    bottom: -5px;
    animation: line-grow-subtle 1.2s 1s forwards cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    content: "";
}@keyframes line-appear {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes line-grow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes line-grow-subtle {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes slide-in {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateY(-20px);
    }
}


.learning-system .knowledge-pro:hover::after {
    width: 200px;
    position: absolute;
    height: 200px;
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    background: radial-gradient(circle, rgb(118,121,134,0.5) 0%, transparent 70%);
    border-radius: 50%;
    content: "";
    animation: followMouse 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    pointer-events: none;
}

@keyframes followMouse {
    0% {
        opacity: 0;
        transform: scale(0.5) translate(-50%, -50%);
    }
    100% {
        opacity: 0.1;
        transform: scale(1) translate(-50%, -50%);
    }
}


@media (max-width: 1200px) {.learning-system {
    padding: 5rem 0;
}.learning-system .knowledge-pro {
    margin: 0 2rem;
    padding: 2.5rem;
}.learning-system h3 {
    font-size: calc(35px * 0.8);
}
}

@media (max-width: 992px) {.learning-system {
    padding: 4rem 0;
}.learning-system .knowledge-pro {
    transform: perspective(1000px) rotateX(1deg);
    padding: 2rem;
}.learning-system h3 {
    font-size: calc(35px * 0.75);
}.learning-system p {
    line-height: 1.7;
    font-size: calc(12px * 0.95);
}.learning-system::after {
    right: -30px;
    top: -30px;
    height: 180px;
    width: 180px;
}
}

@media (max-width: 768px) {.learning-system {
    padding: 3.5rem 0;
}.learning-system .knowledge-pro {
    padding: 1.75rem;
    margin: 0 1.5rem;
    transform: none;
}.learning-system .knowledge-pro:hover {
    transform: translateY(-3px);
}.learning-system h3 {
    font-size: calc(35px * 0.7);
    margin-bottom: 1.25rem;
}.learning-system .knowledge-pro > div::before {
    left: -1.5rem;
    width: 3px;
}.learning-system h3::after {
    height: 2px;
    width: 60px;
}.learning-system::after {
    width: 150px;
    right: -20px;
    height: 150px;
    top: -20px;
}
}

@media (max-width: 576px) {.learning-system {
    padding: 3rem 0;
}.learning-system .knowledge-pro {
    padding: 1.5rem;
    margin: 0 1rem;
}.learning-system h3 {
    font-size: calc(35px * 0.65);
    margin-bottom: 1rem;
}.learning-system p {
    line-height: 1.6;
    font-size: calc(12px * 0.9);
}.learning-system .knowledge-pro > div::before {
    left: -1.25rem;
    width: 2px;
}.learning-system::after {
    width: 120px;
    height: 120px;
    opacity: 0.06;
}
}

@media (max-width: 480px) {.learning-system {
    padding: 2.5rem 0;
}.learning-system .knowledge-pro {
    padding: 1.25rem;
    margin: 0 0.75rem;
}.learning-system h3 {
    font-size: calc(35px * 0.6);
}.learning-system p {
    line-height: 1.5;
    font-size: calc(12px * 0.85);
}.learning-system .knowledge-pro > div::before {
    left: -1rem;
}.learning-system h3::after {
    width: 50px;
}.learning-system::after {
    height: 100px;
    width: 100px;
}
}