* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}.wrapper-structure {
    min-height: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
}.page-nav {
    flex: 1 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    height: 30px;
    width: 30px;
}html,body {
    auto
contain
    scroll-behavior: auto;
    color: #000000;
    height: 100%;
    font-family: Arial, sans-serif;
    min-height: 100%;
}.container {
    margin: auto;
    width: 1185px;
    max-width: 100%;
}.donate-books {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.find-contact {
    padding: 120px 20px;
    background: linear-gradient(135deg, rgb(214,213,194) 0%, rgba(245, 247, 251, 0.92) 100%);
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
}.find-contact::before {
    background-size: 40px 40px;
    opacity: 0.15;
    background-image: 
        linear-gradient(30deg, rgb(172,148,194,0.5) 1px, transparent 1px),
        linear-gradient(150deg, rgb(172,148,194,0.5) 1px, transparent 1px);
    position: absolute;
    z-index: 0;
    height: 100%;
    pointer-events: none;
    left: 0;
    width: 100%;
    top: 0;
    content: "";
}.find-contact::after {
    top: -10%;
    right: -5%;
    animation: floatShape 15s infinite alternate ease-in-out;
    background: linear-gradient(135deg, rgb(172,148,194,0.5) 0%, rgb(102,105,178,0.5) 100%);
    content: "";
    opacity: 0.25;
    width: 300px;
    z-index: 0;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    position: absolute;
    height: 300px;
    filter: blur(30px);
}.find-contact h1 {
    font-weight: 700;
    margin-bottom: 60px;
    font-size: 38px;
    text-align: center;
    color: #000000;
    z-index: 1;
    transform: perspective(1000px) translateZ(0);
    position: relative;
}.find-contact h1::after {
    width: 80px;
    content: "";
    height: 4px;
    transform: translateX(-50%);
    position: absolute;
    bottom: -12px;
    left: 50%;
    background: linear-gradient(90deg, rgb(172,148,194) 0%, rgb(102,105,178) 100%);
    border-radius: 10px;
}.find-contact .container {
    z-index: 2;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.find-contact .msg-details {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    border-radius: 11px;
    padding: 40px;
    transform: translateY(0);
}.find-contact .msg-details:hover {
    transform: translateY(-5px);
}.find-contact .msg-details > div {
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.05);
    background: linear-gradient(145deg, rgba(250, 252, 255, 0.9), rgba(250, 252, 255, 0.4));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
}.find-contact .msg-details > div:hover {
    box-shadow: 0 8px 28px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px) scale(1.01);
}.find-contact .msg-details > div:first-child {
    color: #000000;
    line-height: 1.7;
    letter-spacing: 0.02em;
    border-left: 4px solid rgb(172,148,194);
    font-size: calc(16px + 2px);
}.find-contact h6 {
    align-items: center;
    margin-bottom: 15px;
    text-transform: capitalize;
    gap: 12px;
    color: #000000;
    font-size: 19px;
    font-weight: 600;
    display: flex;
}.find-contact span {
    line-height: 1.6;
    margin-left: 36px;
    color: #000000;
    display: block;
    font-size: 16px;
}.find-contact .learn-chat {
    flex-direction: column;
    display: flex;
    gap: 18px;
}.find-contact .learn-ask {
    background: linear-gradient(135deg, rgba(250, 252, 255, 0.8), rgba(245, 247, 251, 0.4));
    transform-origin: left center;
    align-items: center;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    gap: 12px;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    padding: 10px 15px;
}.find-contact .learn-ask:hover {
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.15);
    color: rgb(172,148,194);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 252, 255, 0.95));
    transform: translateX(5px) scale(1.02);
}.find-contact svg {
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    transition: transform 0.3s ease;
}.find-contact svg path {
    transition: fill 0.3s ease;
    fill: #000000;
}.find-contact .learn-ask:hover svg {
    transform: scale(1.1);
}.find-contact .learn-ask:hover svg path {
    fill: rgb(172,148,194);
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        transform: translate(-20px, 20px) rotate(4deg);
        border-radius: 60% 40% 30% 70% / 50% 60% 30% 60%;
    }
    100% {
        transform: translate(20px, -15px) rotate(-5deg);
        border-radius: 35% 65% 60% 40% / 40% 45% 65% 55%;
    }
}

@media (min-width: 768px) {.find-contact {
    padding: 150px 30px;
}.find-contact h1 {
    margin-bottom: 80px;
}.find-contact .msg-details {
    padding: 60px;
    grid-template-columns: repeat(2, 1fr);
}.find-contact .msg-details > div:first-child {
    grid-column: 1 / -1;
}
}

@media (min-width: 992px) {.find-contact {
    padding: 180px 40px;
}.find-contact h1 {
    font-size: calc(38px * 1.1);
}.find-contact .msg-details {
    grid-template-columns: 1.5fr 1fr 1fr;
}.find-contact .msg-details > div:first-child {
    align-items: center;
    display: flex;
    grid-row: span 2;
    grid-column: 1;
}.find-contact .learn-chat {
    margin-top: 15px;
}
}

@media (max-width: 767px) {.find-contact {
    padding: 80px 15px;
}.find-contact h1 {
    margin-bottom: 40px;
    font-size: calc(38px * 0.9);
}.find-contact .msg-details {
    padding: 30px 20px;
}.find-contact .msg-details > div {
    padding: 15px;
}.find-contact span {
    margin-left: 20px;
}.find-contact .learn-ask {
    padding: 8px 10px;
}
}

@media (hover: none) {.find-contact .msg-details:hover {
    transform: none;
}.find-contact .msg-details > div:hover {
    transform: none;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.05);
}.find-contact .learn-ask:hover {
    transform: none;
}}.cookie-message-popup {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    bottom: 0;
    transition: transform 0.3s ease-in-out;
    background: rgb(214,213,194);
    z-index: 90;
    border-top: 3px solid rgb(172,148,194);
    position: fixed;
}.edu-track {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px 15px;
    align-items: center;
}.cookie-view {
    flex-shrink: 0;
    margin-right: 15px;
}.cookie-view svg {
    width: 60px;
    fill: rgb(172,148,194);
    height: 60px;
    transition: fill 0.3s ease;
}.cookie-view svg:hover {
    fill: rgb(102,105,178);
}.cookie-notice {
    margin-right: 15px;
    color: #000000;
    flex-grow: 1;
}.cookie-message-popup h5 {
    color: rgb(172,148,194);
    font-family: Arial, sans-serif;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}.cookie-message-popup p {
    line-height: 1.5;
    font-size: 15px;
    color: #000000;
    font-family: Arial, sans-serif;
}.cookie-reset {
    line-height: 35px;
    color: #ffffff;
    margin-left: 10px;
    border-radius: 30px;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    background: rgb(172,148,194);
    padding: 10px 20px;
}.cookie-reset:hover {
    box-shadow: 0 0 10px rgb(102,105,178,0.5);
    background: rgb(102,105,178);
}#enable-cookie-collection {
    background: rgb(172,148,194);
}#turn-off-cookie-tracking {
    background: rgba(0, 0, 0, 0.5);
}.cookie-message-popup p a {
    text-decoration: underline;
    transition: color 0.3s ease;
    color: rgb(172,148,194);
}.cookie-message-popup p a:hover {
    color: rgb(102,105,178);
}
@media only screen and (max-width: 1200px) {.edu-track {
    flex-direction: column;
    align-items: center;
}.cookie-view {
    margin-bottom: 15px;
}.cookie-notice {
    margin-right: 0;
    text-align: center;
    margin-bottom: 15px;
}.cookie-reset {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
    max-width: 200px;
}
}
@media only screen and (max-width: 800px) {.edu-track {
    padding: 15px;
}.cookie-view {
    display: none;
}.cookie-message-popup h5 {
    font-size: 16px;
}.cookie-message-popup p {
    font-size: 15px;
}}
#cookie-banneralert {
    display: none;
}#cookie-banneralert:checked ~ .cookie-message-popup {
    visibility: hidden;
    opacity: 0;
}.course-highlights {
    overflow: hidden;
    position: relative;
    background: rgb(214,213,194);
    padding: 140px 0;
}.course-highlights::before {
    position: absolute;
    bottom: 0;
    top: 0;
    z-index: 1;
    content: '';
    left: 0;
    opacity: 0.15;
    background: 
        linear-gradient(45deg, rgb(172,148,194,0.5) 0%, transparent 50%),
        linear-gradient(135deg, transparent 50%, rgb(102,105,178,0.5) 100%);
    right: 0;
}.course-highlights .container {
    position: relative;
    z-index: 2;
}.course-highlights .future-skills {
    display: flex;
    position: relative;
    flex-direction: column;
}.course-highlights .text-column {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    order: 2;
    z-index: 3;
    width: 80%;
    border-radius: 22px;
    margin: -80px auto 0;
}.course-highlights .text-column h2 {
    text-align: center;
    padding-bottom: 15px;
    color: #000000;
    position: relative;
    margin-bottom: 30px;
    font-size: 31px;
    font-weight: 700;
}.course-highlights .text-column h2::after {
    width: 80px;
    background: linear-gradient(to right, rgb(172,148,194), rgb(102,105,178));
    border-radius: 10px;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    height: 3px;
}.course-highlights .text-column .description {
    font-size: 17px;
    line-height: 1.75;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}.course-highlights .text-column .description:last-of-type {
    margin-bottom: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}.course-highlights .icon-image {
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 22px;
    overflow: hidden;
    z-index: 2;
    position: relative;
    order: 1;
    margin: 0 auto;
    transform: perspective(1000px) rotateX(5deg);
    height: 500px;
    transform-origin: bottom;
}.course-highlights .icon-image::before {
    content: '';
    right: 0;
    left: 0;
    top: 0;
    z-index: 1;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 70%);
    position: absolute;
}.course-highlights .icon-image::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    left: 0;
    height: 30%;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    content: '';
}.course-highlights .future-skills::before {
    border-radius: 50%;
    width: 60px;
    content: '';
    height: 60px;
    top: 20px;
    position: absolute;
    left: 10%;
    border: 2px solid rgb(172,148,194,0.5);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}.course-highlights .future-skills::after {
    z-index: 1;
    content: '';
    border-radius: 10px;
    bottom: 50px;
    right: 15%;
    animation: float 6s ease-in-out infinite;
    position: absolute;
    background: rgb(102,105,178,0.5);
    width: 40px;
    height: 40px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@media (min-width: 992px) {.course-highlights .text-column::before {
    position: absolute;
    left: -160px;
    height: 3px;
    background: linear-gradient(to right, transparent, rgb(172,148,194,0.5), transparent);
    content: '';
    top: 0;
    width: 200px;
    z-index: 1;
    transform: translateY(130px) rotate(90deg);
}.course-highlights .text-column::after {
    height: 3px;
    top: 0;
    right: -160px;
    width: 200px;
    position: absolute;
    z-index: 1;
    background: linear-gradient(to right, transparent, rgb(102,105,178,0.5), transparent);
    transform: translateY(130px) rotate(90deg);
    content: '';
}
}

@media (max-width: 1200px) {.course-highlights .text-column {
    width: 70%;
}
}

@media (max-width: 992px) {.course-highlights {
    padding: 100px 0;
}.course-highlights .text-column {
    width: 80%;
    padding: 30px;
}.course-highlights .icon-image {
    height: 350px;
}
}

@media (max-width: 768px) {.course-highlights {
    padding: 80px 0;
}.course-highlights .text-column {
    margin-top: -50px;
    width: 90%;
    padding: 25px;
}.course-highlights .icon-image {
    height: 300px;
    width: 100%;
    transform: perspective(1000px) rotateX(3deg);
}.course-highlights .future-skills::before,
    .course-highlights .future-skills::after {
    display: none;
}
}

@media (max-width: 576px) {.course-highlights {
    padding: 60px 0;
}.course-highlights .text-column {
    width: 100%;
    padding: 20px;
    margin-top: -30px;
}.course-highlights .icon-image {
    height: 250px;
    transform: none;
}.course-highlights .text-column h2 {
    font-size: calc(31px * 0.85);
}.course-highlights .text-column .description {
    font-size: calc(17px * 0.95);
    line-height: 1.6;
}}header .top_plank {
    color:  #ffffff;
    background: rgb(172,148,194);
}header .top_plank .elite-knowledge div svg, header .top_plank .elite-knowledge div svg path {
    fill: #ffffff;
}header .top_plank .elite-knowledge div span {
    color: #ffffff;
}header .top_plank .elite-knowledge {
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 15px 0 10px 0;
    width: 100%;
    font-size: 13px;
    display: flex;
    line-height: 21px;
}header .top_plank .elite-knowledge div {
    align-items: center;
    margin-right: 24px;
    display: flex;
    justify-content: flex-start;
}header .top_plank .elite-knowledge div img, header .top_plank .elite-knowledge div svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}.contact-box {
    background: linear-gradient(
        225deg, 
        rgb(214,213,194) 0%, 
        rgb(102,105,178,0.5) 100%
    );
    position: relative;
    padding: 6rem 0;
    perspective: 1000px;
    overflow: hidden;
}.contact-box::before {
    bottom: 0;
    z-index: 1;
    background: 
        repeating-linear-gradient(
            0deg, 
            rgba(255,255,255,0.02) 0, 
            rgba(255,255,255,0.02) 1px, 
            transparent 1px, 
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg, 
            rgba(255,255,255,0.02) 0, 
            rgba(255,255,255,0.02) 1px, 
            transparent 1px, 
            transparent 4px
        );
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    pointer-events: none;
    right: 0;
}.contact-box::after {
    width: 200%;
    content: '';
    z-index: 2;
    position: absolute;
    opacity: 0.6;
    animation: circuit-pulse 10s infinite alternate;
    background: radial-gradient(
        circle at center, 
        rgb(172,148,194,0.5) 0%, 
        transparent 70%
    );
    top: -50%;
    height: 200%;
    left: -50%;
}.contact-box .container {
    z-index: 3;
    max-width: 1300px;
    padding: 0 1rem;
    position: relative;
    margin: 0 auto;
}.contact-box h2 {
    color: #ffffff;
    font-size: 46px;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}.contact-box h2::before,
.contact-box h2::after {
    bottom: -0.5rem;
    height: 2px;
    background: linear-gradient(
        to right, 
        transparent, 
        rgb(172,148,194), 
        transparent
    );
    content: '';
    position: absolute;
}.contact-box h2::before {
    left: 0;
    width: 30%;
}.contact-box h2::after {
    width: 30%;
    right: 0;
}.contact-box .feedback-message {
    border-radius: 17px;
    align-items: stretch;
    display: flex;
    border: 1px solid rgb(172,148,194,0.5);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 5px 15px rgba(0,0,0,0.1);
    transform: rotateX(5deg) scale(0.98);
    transition: transform 0.3s ease;
    background: rgb(102,105,178,0.5);
}.contact-box .feedback-message:hover {
    transform: rotateX(0) scale(1);
}.contact-box .icon-image {
    overflow: hidden;
    flex: 0 0 40%;
    position: relative;
    min-height: 500px;
}.contact-box .icon-image::before {
    height: 100%;
    mix-blend-mode: color-dodge;
    width: 100%;
    opacity: 0.7;
    background: linear-gradient(
        135deg, 
        rgb(172,148,194,0.5) 0%, 
        rgb(102,105,178,0.5) 100%
    );
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}.contact-box .query-map {
    padding: 4rem 3rem;
    position: relative;
    display: flex;
    flex: 0 0 60%;
    flex-direction: column;
    justify-content: center;
}.contact-box .query-map::before {
    position: absolute;
    top: 2rem;
    height: 10px;
    animation: signal-pulse 2s infinite alternate;
    right: 2rem;
    width: 10px;
    border-radius: 50%;
    content: '';
    background: rgb(172,148,194);
    box-shadow: 0 0 20px rgb(172,148,194);
}.contact-box .query-map form {
    max-width: 500px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    z-index: 3;
}.contact-box .query-map h3 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-weight: 600;
}.contact-box .query-map input:not([type="checkbox"]):not([type="submit"]) {
    background: rgb(102,105,178,0.5);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    z-index: 2;
    border: 1px solid rgb(172,148,194,0.5);
}.contact-box .query-map input:not([type="checkbox"]):not([type="submit"])::before {
    left: 0;
    z-index: 1;
    height: 100%;
    background: linear-gradient(
        45deg, 
        transparent 0%, 
        rgb(172,148,194,0.5) 100%
    );
    opacity: 0;
    content: '';
    position: absolute;
    transition: opacity 0.3s ease;
    top: 0;
    width: 100%;
}.contact-box .query-map input:not([type="checkbox"]):not([type="submit"]):focus {
    box-shadow: 0 0 15px rgb(172,148,194,0.5);
    border-color: rgb(172,148,194);
}.contact-box .query-map input:not([type="checkbox"]):not([type="submit"]):focus::before {
    opacity: 1;
}.contact-box .query-map .query-reach {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: center;
}.contact-box .query-map .query-reach input[type="checkbox"] {
    height: 22px;
    border: 2px solid rgb(172,148,194,0.5);
    background: rgb(102,105,178,0.5);
    margin-right: 1rem;
    transition: all 0.3s ease;
    width: 22px;
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    position: relative;
}.contact-box .query-map .query-reach input[type="checkbox"]:checked {
    background: rgb(172,148,194);
    border-color: rgb(172,148,194);
}.contact-box .query-map .query-reach input[type="checkbox"]:checked::after {
    font-size: 0.8rem;
    content: '✔';
    color: #ffffff;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
}.contact-box .query-map .query-reach label {
    align-items: center;
    display: flex;
    font-size: 14px;
    color: #ffffff;
}.contact-box .query-map .query-reach a {
    text-decoration: none;
    margin-left: 0.3rem;
    color: rgb(172,148,194);
    transition: color 0.3s ease;
}.contact-box .query-map .query-reach a:hover {
    text-decoration: underline;
}.contact-box .query-map .message-requestMJ2 {
    border: none;
    text-transform: uppercase;
    color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 10px;
    padding: 1rem;
    font-size: 14px;
    background: rgb(172,148,194);
}.contact-box .query-map .message-requestMJ2::before {
    top: 0;
    position: absolute;
    left: -100%;
    height: 100%;
    transition: all 0.3s ease;
    content: '';
    width: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgb(172,148,194,0.5), 
        transparent
    );
}.contact-box .query-map .message-requestMJ2:hover::before {
    left: 100%;
}.contact-box .query-map .message-requestMJ2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(172,148,194,0.5);
}

@keyframes circuit-pulse {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(5deg) scale(1.02);
        opacity: 0.8;
    }
}

@keyframes signal-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {.contact-box .feedback-message {
    flex-direction: column;
    transform: none;
}.contact-box .icon-image {
    flex: 0 0 100%;
    min-height: 300px;
}.contact-box .query-map {
    flex: 0 0 100%;
    padding: 3rem 2rem;
}
}

@media screen and (max-width: 768px) {.contact-box {
    padding: 3rem 0;
}.contact-box h2 {
    font-size: calc(46px * 0.8);
    margin-bottom: 2rem;
}.contact-box .query-map h3 {
    font-size: calc(38px * 0.9);
}.contact-box .query-map input:not([type="checkbox"]):not([type="submit"]) {
    margin-bottom: 1rem;
    padding: 0.8rem 1.2rem;
}.contact-box .query-map .query-reach {
    align-items: flex-start;
}.contact-box .query-map .query-reach input[type="checkbox"] {
    margin-top: 0.2rem;
}
}

@media screen and (max-width: 480px) {.contact-box .feedback-message {
    border-radius: 0;
}.contact-box .icon-image {
    min-height: 250px;
}.contact-box .query-map {
    padding: 2rem 1.5rem;
}}.register-now {
    z-index: 1;
    padding: 140px 0;
    background: linear-gradient(110deg, rgb(172,148,194) 0%, rgb(102,105,178) 100%);
    position: relative;
    overflow: hidden;
}.register-now::before {
    width: 100%;
    left: 0;
    z-index: -1;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    background: 
        linear-gradient(
            135deg,
            transparent 25%,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 50%,
            transparent 75%,
            rgba(255, 255, 255, 0.05) 75%
        );
    background-size: 30px 30px;
    animation: patternMove 15s linear infinite;
    content: '';
    top: 0;
}.register-now::after {
    width: 200%;
    left: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(255, 255, 255, 0) 0deg,
        rgba(255, 255, 255, 0.03) 90deg,
        rgba(255, 255, 255, 0) 180deg,
        rgba(255, 255, 255, 0.03) 270deg,
        rgba(255, 255, 255, 0) 360deg
    );
    height: 200%;
    z-index: -1;
    position: absolute;
    top: -50%;
    content: '';
    animation: rotateConic 30s linear infinite;
}.register-now .team-culture {
    padding: 0;
    z-index: 2;
    align-items: center;
    position: relative;
    max-width: 900px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}.register-now .team-culture::before {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
    content: '';
    position: absolute;
    z-index: -1;
    width: 140%;
    left: -20%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    height: 100%;
    top: 0;
    transform: skewX(-15deg);
    border-radius: 20px;
}.register-now .team-culture::after {
    right: -30px;
    animation: floatBubble 10s ease-in-out infinite alternate;
    height: 100px;
    content: '';
    top: -30px;
    position: absolute;
    width: 100px;
    filter: blur(20px);
    z-index: -1;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
}.register-now h3 {
    transform: rotateX(5deg);
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 36px;
    padding: 0 20px;
    letter-spacing: 2px;
    margin: 60px 0;
}.register-now h3::before {
    height: 1px;
    top: -30px;
    width: 80%;
    position: absolute;
    left: 10%;
    content: '';
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
}.register-now h3::after {
    position: absolute;
    width: 60%;
    bottom: -30px;
    left: 20%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    content: '';
    height: 1px;
}.register-now h3:hover {
    transform: rotateX(0deg);
}.register-now .learn-ask {
    transition: all 0.4s ease;
    text-decoration: none;
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    color: rgb(172,148,194);
    font-weight: 600;
    transform-origin: bottom center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    display: inline-block;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    padding: 20px 50px;
    text-transform: uppercase;
    transform: perspective(1000px) rotateX(10deg);
    letter-spacing: 2px;
    font-size: 19px;
    z-index: 1;
}.register-now .learn-ask::before {
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.4s ease;
    opacity: 0;
    content: '';
    position: absolute;
    z-index: -1;
    background: linear-gradient(
        145deg,
        rgb(172,148,194) 0%,
        rgb(102,105,178) 100%
    );
}.register-now .learn-ask::after {
    width: 100%;
    height: 20px;
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05),
        transparent
    );
    top: 0;
}.register-now .learn-ask:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.register-now .learn-ask:hover::before {
    opacity: 1;
}

@media screen and (max-width: 992px) {.register-now {
    padding: 120px 0;
}.register-now .team-culture::before {
    width: 130%;
    left: -15%;
}.register-now h3 {
    font-size: calc(36px * 0.9);
    margin: 50px 0;
}.register-now .learn-ask {
    font-size: calc(19px * 0.95);
    margin-bottom: 50px;
    padding: 18px 45px;
}
}

@media screen and (max-width: 768px) {.register-now {
    padding: 100px 0;
}.register-now .team-culture::before {
    transform: skewX(-10deg);
    width: 120%;
    left: -10%;
}.register-now h3 {
    margin: 40px 0;
    transform: none;
    font-size: calc(36px * 0.8);
}.register-now h3::before {
    top: -25px;
}.register-now h3::after {
    bottom: -25px;
}.register-now .learn-ask {
    transform: none;
    margin-bottom: 40px;
    padding: 15px 40px;
    font-size: calc(19px * 0.9);
}.register-now .learn-ask:hover {
    transform: translateY(-5px);
}
}

@media screen and (max-width: 576px) {.register-now {
    padding: 80px 0;
}.register-now .team-culture::before {
    width: 110%;
    transform: skewX(-5deg);
    left: -5%;
}.register-now h3 {
    font-size: calc(36px * 0.7);
    margin: 35px 0;
    letter-spacing: 1px;
}.register-now h3::before {
    top: -20px;
}.register-now h3::after {
    bottom: -20px;
}.register-now .learn-ask {
    margin-bottom: 35px;
    padding: 12px 35px;
    letter-spacing: 1px;
    font-size: calc(19px * 0.85);
}}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

@keyframes rotateConic {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatBubble {
    0% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
}.instructor-profile {
    position: relative;
    background: linear-gradient(135deg, rgb(214,213,194) 0%, #ffffff 100%);
    overflow: hidden;
    padding: 120px 0;
}.instructor-profile::before {
    top: 0;
    position: absolute;
    width: 100%;
    content: "";
    opacity: 0.05;
    left: 0;
    z-index: 1;
    background: repeating-linear-gradient(
        -45deg,
        rgb(102,105,178,0.5) 0px,
        rgb(102,105,178,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    height: 100%;
}.instructor-profile::after {
    z-index: 1;
    transform: rotate(-15deg);
    position: absolute;
    background: radial-gradient(
        ellipse at center,
        rgb(172,148,194,0.5) 0%,
        transparent 70%
    );
    width: 80%;
    opacity: 0.1;
    top: -50%;
    right: -25%;
    height: 200%;
    content: "";
}.instructor-profile .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}.instructor-profile .learner-reflections {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    position: relative;
    grid-template-columns: 1fr;
    padding: 3rem;
    background: #ffffff;
    transform: perspective(1000px) rotateY(0deg);
    gap: 2rem;
    display: grid;
}.instructor-profile .learner-reflections:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateY(2deg) translateY(-5px);
}.instructor-profile .learner-reflections::before {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    top: 0;
    background: linear-gradient(to bottom, rgb(172,148,194), rgb(102,105,178));
    transform-origin: top;
    content: "";
    width: 5px;
    left: 0;
    position: absolute;
    height: 100%;
    transform: scaleY(0);
}.instructor-profile .learner-reflections:hover::before {
    transform: scaleY(1);
}.instructor-profile .icon-image {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: rotate(-3deg) translateY(0);
    overflow: hidden;
    height: 180px;
    width: 180px;
    border: 6px solid #ffffff;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.instructor-profile .learner-reflections:hover .icon-image {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}.instructor-profile .icon-image::after {
    position: absolute;
    left: 0;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    content: "";
    top: 0;
    width: 100%;
}.instructor-profile .name {
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    margin: 0.5rem 0;
    display: inline-block;
    font-weight: 700;
    width: 100%;
    text-align: center;
    font-size: calc(19px * 1.1);
    color: rgb(172,148,194);
}.instructor-profile .learner-reflections:hover .name {
    transform: translateY(-5px);
}.instructor-profile .name::after {
    position: absolute;
    height: 2px;
    transform: translateX(-50%) scaleX(0.5);
    bottom: -5px;
    content: "";
    left: 50%;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    width: 80px;
    background: rgb(102,105,178);
}.instructor-profile .learner-reflections:hover .name::after {
    transform: translateX(-50%) scaleX(1);
}.instructor-profile .learner-reflections div:nth-child(2) div {
    margin-top: 0.5rem;
    font-size: calc(12px * 1.05);
    color: rgb(102,105,178);
    text-align: center;
    font-style: italic;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}.instructor-profile .learner-reflections:hover div:nth-child(2) div {
    transform: translateY(-3px);
}.instructor-profile .emp-items {
    line-height: 1.8;
    font-size: 12px;
    opacity: 0.95;
    position: relative;
    padding: 1.5rem 0.5rem 0.5rem;
    text-align: justify;
    color: #000000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0 0;
    transition: opacity 0.4s ease;
}.instructor-profile .learner-reflections:hover .emp-items {
    opacity: 1;
}.instructor-profile .emp-items::before {
    color: rgb(172,148,194,0.5);
    left: 50%;
    font-family: serif;
    position: absolute;
    transform: translateX(-50%);
    font-size: 4rem;
    top: -0.5rem;
    line-height: 1;
    content: "";
    text-shadow: 2px 2px 0 #ffffff;
}

@media (min-width: 768px) {.instructor-profile .learner-reflections {
    grid-template-columns: auto 1fr;
    padding: 3.5rem;
    gap: 2.5rem;
}.instructor-profile .icon-image {
    height: 200px;
    width: 200px;
    margin: 0;
}.instructor-profile .name {
    text-align: left;
}.instructor-profile .name::after {
    transform: translateX(0) scaleX(0.5);
    left: 0;
}.instructor-profile .learner-reflections:hover .name::after {
    transform: translateX(0) scaleX(1);
}.instructor-profile .learner-reflections div:nth-child(2) div {
    text-align: left;
}.instructor-profile .learner-reflections div:nth-child(3) {
    grid-column: span 2;
}.instructor-profile .emp-items {
    padding: 2rem 1rem 0.5rem;
}.instructor-profile .emp-items::before {
    left: 1rem;
    transform: translateX(0);
}
}

@media (min-width: 992px) {.instructor-profile {
    padding: 150px 0;
}.instructor-profile .learner-reflections {
    padding: 4rem;
    gap: 3rem;
    grid-template-columns: 220px 1fr 2fr;
}.instructor-profile .learner-reflections div:nth-child(1) {
    grid-row: span 2;
}.instructor-profile .learner-reflections div:nth-child(3) {
    grid-column: 3;
    grid-row: span 2;
}.instructor-profile .icon-image {
    height: 280px;
    width: 220px;
}.instructor-profile .emp-items {
    border-top: none;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 0 0 0 3rem;
    align-items: center;
    display: flex;
    margin: 0;
}.instructor-profile .emp-items::before {
    top: 1rem;
    left: 1rem;
}
}

@media (min-width: 1200px) {.instructor-profile .learner-reflections {
    gap: 3.5rem;
    grid-template-columns: 250px 1fr 2.5fr;
    padding: 5rem;
}.instructor-profile .icon-image {
    height: 320px;
    width: 250px;
}.instructor-profile .name {
    font-size: calc(19px * 1.2);
}.instructor-profile .learner-reflections div:nth-child(2) div {
    font-size: calc(12px * 1.1);
    margin-top: 0.75rem;
}.instructor-profile .emp-items {
    line-height: 1.9;
    font-size: calc(12px * 1.05);
    padding: 0 0 0 4rem;
}}.thxSpot {
    box-shadow: 
        inset 12px 12px 24px rgba(255, 255, 255, 0.8),
        inset -12px -12px 24px rgba(70, 70, 80, 0.05);
    background: linear-gradient(145deg, rgb(214,213,194), #f8f9fd);
    overflow: hidden;
    padding: 4rem 2rem;
    position: relative;
}.thxSpot::before {
    top: -10%;
    width: 40%;
    height: 70%;
    pointer-events: none;
    z-index: 0;
    right: -5%;
    opacity: 0.2;
    position: absolute;
    content: "";
    transform: rotate(-15deg);
    background: linear-gradient(120deg, rgb(172,148,194,0.5), rgb(102,105,178,0.5));
    filter: blur(80px);
}.thxSpot::after {
    height: 60%;
    left: -5%;
    filter: blur(70px);
    width: 30%;
    position: absolute;
    content: "";
    opacity: 0.15;
    pointer-events: none;
    background: linear-gradient(220deg, rgb(102,105,178,0.5), rgb(172,148,194,0.5));
    transform: rotate(20deg);
    bottom: -10%;
    z-index: 0;
}.thxSpot .container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}.thxSpot h2 {
    letter-spacing: -0.02em;
    animation: fadeInDown 0.8s ease-out forwards;
    position: relative;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 1;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    transform: translateY(0);
    line-height: 1.3;
}.thxSpot h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    content: "";
    background: linear-gradient(90deg, rgb(172,148,194), rgb(102,105,178));
    bottom: -0.8rem;
    height: 3px;
    position: absolute;
    border-radius: 10px;
}.thxSpot .team-culture {
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.05),
        -20px -20px 60px rgba(255, 255, 255, 0.9),
        inset 4px 4px 20px rgba(255, 255, 255, 0.9),
        inset -4px -4px 10px rgba(0, 0, 0, 0.03);
    transform: translateY(0);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    padding: 2.5rem;
    opacity: 0;
    background: #ffffff;
    border-radius: 12px;
}.thxSpot .team-culture::before {
    height: 100%;
    border-radius: inherit;
    background: 
        radial-gradient(circle at 10% 20%, rgba(rgb(172,148,194,0.5), 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(rgb(102,105,178,0.5), 0.03) 0%, transparent 30%);
    top: 0;
    z-index: -1;
    content: "";
    left: 0;
    width: 100%;
    position: absolute;
}.thxSpot ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.thxSpot li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}.thxSpot li:last-child {
    margin-bottom: 0;
}.thxSpot li::before {
    width: 8px;
    left: 0;
    height: 8px;
    top: 0.6rem;
    transform: scale(0);
    border-radius: 50%;
    position: absolute;
    background: linear-gradient(135deg, rgb(172,148,194), rgb(102,105,178));
    animation: scaleIn 0.4s ease-out 0.8s forwards;
    content: "";
}.thxSpot li span {
    font-size: 16px;
    opacity: 0;
    line-height: 1.7;
    color: #000000;
    animation: fadeInRight 0.7s ease-out 0.6s forwards;
    transform: translateX(0);
    display: block;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes fadeInRight {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@media (max-width: 991px) {.thxSpot {
    padding: 3rem 1.5rem;
}.thxSpot h2 {
    margin-bottom: 2rem;
    font-size: calc(36px * 0.9);
}.thxSpot .team-culture {
    padding: 2rem;
}
}

@media (max-width: 767px) {.thxSpot {
    padding: 2.5rem 1.25rem;
}.thxSpot h2 {
    font-size: calc(36px * 0.8);
    margin-bottom: 1.8rem;
    line-height: 1.4;
}.thxSpot h2::after {
    width: 60px;
}.thxSpot .team-culture {
    padding: 1.5rem;
}.thxSpot li span {
    font-size: calc(16px * 0.95);
    line-height: 1.6;
}
}

@media (max-width: 480px) {.thxSpot {
    padding: 2rem 1rem;
}.thxSpot h2 {
    text-align: left;
    font-size: calc(36px * 0.7);
}.thxSpot h2::after {
    width: 50px;
    transform: none;
    left: 0;
}.thxSpot .team-culture {
    padding: 1.25rem;
}.thxSpot li {
    padding-left: 1.25rem;
}.thxSpot li::before {
    width: 6px;
    height: 6px;
    top: 0.5rem;
}}footer {
    position: relative;
    z-index: 1;
}footer::before {
    z-index: -2;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgb(214,213,194) 0%, rgb(172,148,194,0.5) 100%);
    top: 0;
    bottom: 0;
    content: "";
    position: absolute;
    opacity: 0.9;
}footer::after {
    right: 0;
    top: 0;
    position: absolute;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgb(172,148,194,0.5), rgb(172,148,194,0.5) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgb(172,148,194,0.5), rgb(172,148,194,0.5) 1px, transparent 1px, transparent 20px);
    z-index: -1;
    left: 0;
    content: "";
    opacity: 0.1;
}.donate-books {
    position: relative;
    padding: 4rem 0 2rem;
    color: #000000;
}.donate-books::after {
    width: 100%;
    background: linear-gradient(90deg, rgb(172,148,194), rgb(102,105,178));
    top: 0;
    height: 6px;
    content: "";
    left: 0;
    position: absolute;
}.donate-books .container {
    gap: 3rem;
    display: flex;
    position: relative;
    flex-wrap: wrap;
}.donate-books .company_holder {
    padding: 2rem 2.5rem;
    flex: 1 1 400px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #ffffff;
}.donate-books .company_holder::before {
    background: rgb(172,148,194);
    content: "";
    height: 5px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}.donate-books .company_holder h3 {
    color: rgb(172,148,194);
    font-weight: 700;
    margin: 0 0 1.5rem;
    font-size: 28px;
    position: relative;
    letter-spacing: 0.5px;
}.donate-books .company_holder h3::after {
    position: absolute;
    background: rgb(102,105,178);
    left: 0;
    bottom: -0.5rem;
    content: "";
    height: 3px;
    width: 80px;
}.donate-books .collab-net {
    font-size: 13px;
    line-height: 1.7;
    border-radius: 10px;
    background: rgb(214,213,194);
    color: #000000;
    position: relative;
    border-left: 3px solid rgb(102,105,178);
    padding: 1.5rem;
}.donate-books .pitch-comp {
    flex: 1 1 calc(100% - 450px);
    min-width: 400px;
}.donate-books .header-navbar {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}.donate-books .head-guide {
    background: #ffffff;
    border-radius: 25px;
    flex: 1 1 calc(50% - 1.25rem);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}.donate-books .head-guide h5 {
    font-weight: 600;
    margin: 0;
    position: relative;
    font-size: 18px;
    color: #ffffff;
    padding: 1rem 1.5rem;
    background: rgb(102,105,178);
}.donate-books .head-guide .header-navbar {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
}.donate-books .head-guide .header-navbar a {
    font-size: 13px;
    color: #000000;
    display: flex;
    text-decoration: none;
    position: relative;
    padding: 0.8rem 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}.donate-books .head-guide .header-navbar a::before {
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    width: 0;
    position: absolute;
    z-index: -1;
    height: 100%;
    background: rgb(214,213,194);
    content: "";
}.donate-books .head-guide .header-navbar a::after {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    transition: all 0.3s ease;
    border-radius: 50%;
    opacity: 0;
    height: 5px;
    width: 5px;
    content: "";
    left: 1.5rem;
    background: rgb(102,105,178);
}.donate-books .head-guide .header-navbar a:hover {
    color: rgb(172,148,194);
    padding-left: 2.2rem;
}.donate-books .head-guide .header-navbar a:hover::before {
    width: 100%;
}.donate-books .head-guide .header-navbar a:hover::after {
    opacity: 1;
}.telegram-ref {
    padding: 2rem 0;
    margin-top: 3rem;
    background: rgb(214,213,194);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}.telegram-ref::before {
    height: 1px;
    content: "";
    left: 10%;
    right: 10%;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(172,148,194,0.5), transparent);
    top: 0;
}.telegram-ref .container {
    align-items: center;
    display: flex;
    justify-content: center;
}.telegram-ref .privacy-cta {
    font-weight: 400;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 12px;
    color: #000000;
    padding: 0.8rem 2rem;
    background: #ffffff;
}

@media (max-width: 1200px) {.donate-books .container {
    gap: 2rem;
}.donate-books .company_holder {
    flex: 1 1 360px;
}.donate-books .pitch-comp {
    min-width: 360px;
    flex: 1 1 calc(100% - 400px);
}.donate-books .header-navbar {
    gap: 2rem;
}
}

@media (max-width: 992px) {.donate-books {
    padding: 3.5rem 0 2rem;
}.donate-books .container {
    gap: 2.5rem;
    flex-direction: column;
}.donate-books .company_holder,
    .donate-books .pitch-comp {
    flex: 1 1 100%;
    min-width: 100%;
}.donate-books .head-guide {
    min-width: 200px;
    flex: 1 1 calc(50% - 1rem);
}
}

@media (max-width: 768px) {.donate-books {
    padding: 3rem 0 1.5rem;
}.donate-books .header-navbar {
    gap: 1.5rem;
}.donate-books .company_holder {
    padding: 2rem;
}.donate-books .company_holder h3 {
    font-size: calc(28px - 2px);
}.telegram-ref {
    margin-top: 2rem;
}
}

@media (max-width: 576px) {.donate-books {
    padding: 2.5rem 0 1rem;
}.donate-books .container {
    gap: 1.5rem;
}.donate-books .head-guide {
    flex: 1 1 100%;
    min-width: 100%;
}.donate-books .header-navbar {
    gap: 1rem;
}.donate-books .company_holder {
    padding: 1.5rem;
}.donate-books .collab-net {
    padding: 1.2rem;
}.telegram-ref {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
}
}

@media (max-width: 420px) {.donate-books .company_holder h3::after {
    width: 50px;
}.donate-books .head-guide .header-navbar a:hover {
    padding-left: 2rem;
}.telegram-ref .privacy-cta {
    padding: 0.7rem 1.5rem;
    width: 90%;
}}.pricing-package {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: #ffffff;
}.pricing-package::before {
    right: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    z-index: 1;
    top: 0;
}.pricing-package .container {
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
}.trial-pricing {
    position: relative;
}.pricing-package h2 {
    font-weight: 700;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
    font-size: 28px;
    margin-bottom: 1.5rem;
    text-align: center;
    transform: translateY(0);
}.pricing-package h2::after {
    transform: translateX(-50%);
    height: 3px;
    bottom: -15px;
    background: linear-gradient(90deg, rgb(172,148,194), rgb(102,105,178));
    content: "";
    width: 80px;
    left: 50%;
    position: absolute;
}.pricing-package .edu-rates {
    line-height: 1.6;
    max-width: 800px;
    text-align: center;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    opacity: 0.9;
    font-size: calc(15px * 1.1);
}.pricing-package .promo-plans {
    margin: 0;
    list-style: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    padding: 0;
    gap: 30px;
}.pricing-package .promo-plans li {
    transform-style: preserve-3d;
    perspective: 1000px;
}.pricing-package .study-rates {
    transform: translateZ(0);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    height: 100%;
    text-decoration: none;
    display: block;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}.pricing-package .study-rates::before {
    z-index: 1;
    position: absolute;
    background: linear-gradient(135deg, 
        rgb(172,148,194,0.5) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    content: "";
    inset: 0;
}.pricing-package .study-rates:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}.pricing-package .study-rates:hover::before {
    opacity: 0.15;
}.pricing-package .rate-list {
    height: 100%;
    padding: 2.5rem 2rem;
    z-index: 2;
    position: relative;
}.pricing-package .fee-package {
    flex-direction: column;
    height: 100%;
    display: flex;
}.pricing-package .fee-package h4 {
    transform: translateZ(20px);
    position: relative;
    font-size: calc(18px * 1.2);
    display: inline-block;
    color: #ffffff;
    margin-bottom: 1.5rem;
    margin-top: 0;
    transition: transform 0.3s ease;
}.pricing-package .fee-package h4::after {
    position: absolute;
    background: rgb(102,105,178);
    width: 40px;
    transform: scaleX(1);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    height: 2px;
    content: "";
    bottom: -8px;
    transform-origin: left;
}.pricing-package .study-rates:hover .fee-package h4::after {
    transform: scaleX(1.5);
}.pricing-package .fee-package p {
    margin-bottom: 2rem;
    flex-grow: 1;
    hyphens: auto;
    overflow-wrap: break-word;
    transform: translateZ(10px);
    max-height: 300px;
    padding-right: 5px;
    word-wrap: break-word;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 15px;
}.pricing-package .fee-package p::-webkit-scrollbar {
    width: 4px;
}.pricing-package .fee-package p::-webkit-scrollbar-thumb {
    background: rgb(102,105,178,0.5);
    border-radius: 10px;
}.pricing-package .learning-deals {
    transform: translateZ(15px);
    border-radius: 10px;
    font-size: calc(18px * 1.2);
    font-weight: 700;
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    background: linear-gradient(135deg, 
        rgb(172,148,194) 0%, 
        rgb(102,105,178) 100%);
    display: inline-block;
}.pricing-package .study-rates:hover .learning-deals {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateZ(25px) scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 1200px) {.pricing-package {
    padding: 100px 0;
}.pricing-package .promo-plans {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}
}

@media (max-width: 992px) {.pricing-package {
    padding: 80px 0;
}.pricing-package .rate-list {
    padding: 2rem 1.5rem;
}.pricing-package .fee-package h4 {
    font-size: calc(18px * 1.1);
}.pricing-package .learning-deals {
    padding: 0.7rem 1.2rem;
    font-size: calc(18px * 1.1);
}
}

@media (max-width: 768px) {.pricing-package {
    padding: 60px 0;
}.pricing-package h2 {
    font-size: calc(28px * 0.9);
}.pricing-package .edu-rates {
    margin-bottom: 2rem;
    font-size: 15px;
}.pricing-package .promo-plans {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}.pricing-package .fee-package p {
    max-height: 200px;
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 576px) {.pricing-package {
    padding: 50px 0;
}.pricing-package h2 {
    font-size: calc(28px * 0.8);
}.pricing-package .rate-list {
    padding: 1.5rem 1.2rem;
}.pricing-package .fee-package h4 {
    font-size: 18px;
    margin-bottom: 1.2rem;
}.pricing-package .learning-deals {
    padding: 0.6rem 1rem;
    font-size: 18px;
}.pricing-package .study-rates:hover {
    transform: translateY(-5px);
}}.about-this {
    overflow: hidden;
    position: relative;
    padding: 120px 0 100px;
    color: #ffffff;
}.about-this::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(28, 35, 45, 0.92) 0%,
        rgba(28, 35, 45, 0.85) 50%, 
        rgba(28, 35, 45, 0.75) 100%);
}.about-this::after {
    background-image: 
        linear-gradient(90deg, rgb(102,105,178,0.5) 1px, transparent 1px),
        linear-gradient(180deg, rgb(102,105,178,0.5) 1px, transparent 1px);
    opacity: 0.1;
    content: "";
    top: 0;
    z-index: 2;
    left: 0;
    height: 100%;
    position: absolute;
    background-size: 40px 40px;
    width: 100%;
}.about-this .container {
    position: relative;
    max-width: 1200px;
    z-index: 3;
    padding: 0 20px;
    margin: 0 auto;
}.about-this h2 {
    display: inline-block;
    font-size: 30px;
    transform: translateX(-10px);
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    animation: slideInTitle 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    position: relative;
}.about-this h2::after {
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(102,105,178), rgb(172,148,194));
    width: 0;
    height: 3px;
    animation: lineGrow 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
    bottom: -15px;
    position: absolute;
}.about-this .text-column {
    position: relative;
    backdrop-filter: blur(10px);
    padding: 40px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    animation: fadeUpIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
    transform: translateY(20px);
    border-left: 4px solid rgb(102,105,178);
    opacity: 0;
}.about-this .text-column::before {
    left: -12px;
    height: 20px;
    position: absolute;
    transform: rotate(45deg);
    background: rgb(102,105,178);
    top: 30px;
    width: 20px;
    content: "";
}.about-this .text-column::after {
    width: 100px;
    top: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    height: 100px;
    right: 0;
    position: absolute;
    background: linear-gradient(135deg, transparent 50%, rgba(var(--primary-color-rgb), 0.1) 50%);
    content: "";
}.about-this .text-column > div {
    position: relative;
}.about-this .text-column p {
    color: rgb(102,105,178);
    transform: translateX(-5px);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
    font-size: calc(16px * 1.4);
    opacity: 0;
}.about-this .text-column div div {
    font-family: Arial, sans-serif;
    text-align: justify;
    color: #ffffff;
    animation: fadeIn 1s ease-out 0.7s forwards;
    opacity: 0;
    column-gap: 40px;
    column-count: 1;
    line-height: 1.8;
    font-size: 16px;
}

@keyframes slideInTitle {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes lineGrow {
    to {
        width: 80px;
    }
}

@keyframes fadeUpIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


@media (min-width: 768px) {.about-this {
    padding: 150px 0 130px;
}.about-this h2 {
    margin-bottom: 70px;
    font-size: calc(30px * 1.2);
}.about-this .text-column {
    padding: 50px 60px;
    width: calc(100% - 40px);
    margin-left: 40px;
}.about-this .text-column div div {
    column-count: 2;
}.about-this .text-column::before {
    top: 50px;
}
}

@media (min-width: 992px) {.about-this {
    padding: 180px 0 150px;
}.about-this .container {
    padding: 0 40px;
}.about-this h2 {
    margin-bottom: 80px;
    font-size: calc(30px * 1.4);
}.about-this .text-column {
    margin-left: 60px;
    padding: 60px 80px;
    width: calc(100% - 60px);
}.about-this .text-column div div {
    column-gap: 60px;
    column-count: 2;
}
}

@media (min-width: 1200px) {.about-this .text-column {
    padding: 70px 100px;
    margin-left: 80px;
    width: calc(100% - 80px);
}.about-this .text-column::after {
    width: 150px;
    height: 150px;
}.about-this .text-column div div {
    column-gap: 80px;
    column-count: 2;
}
}

@media (hover: hover) {.about-this .text-column:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(-5px);
}.about-this .text-column:hover::before {
    transition: all 0.4s ease;
    background: rgb(172,148,194);
}}.privacy-nook {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, rgb(214,213,194), #ffffff);
}.privacy-nook::before {
    pointer-events: none;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    top: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgb(102,105,178,0.5), transparent 40%),
        radial-gradient(circle at 90% 10%, rgb(172,148,194,0.5), transparent 45%);
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
}.privacy-nook .container {
    animation: fadeIn 0.8s ease-out forwards;
    position: relative;
    opacity: 0;
    z-index: 1;
    margin: 0 auto;
    max-width: 1140px;
}.privacy-nook h1 {
    font-weight: 700;
    transform: translateY(10px);
    margin-bottom: 2rem;
    animation: slideUp 0.7s ease-out forwards 0.2s;
    position: relative;
    opacity: 0;
    color: #000000;
    display: inline-block;
    font-size: 38px;
}.privacy-nook h1::after {
    content: "";
    bottom: -0.5rem;
    width: 3.5rem;
    transform-origin: left;
    transform: scaleX(0);
    animation: expandLine 0.7s ease-out forwards 0.7s;
    position: absolute;
    left: 0;
    height: 3px;
    background: rgb(172,148,194);
}.privacy-nook h2 {
    font-size: 29px;
    color: #000000;
    animation: slideUp 0.7s ease-out forwards 0.3s;
    font-weight: 600;
    padding-left: 1rem;
    transform: translateY(10px);
    margin: 2.5rem 0 1.5rem;
    opacity: 0;
    position: relative;
}.privacy-nook h2::before {
    left: 0;
    content: "";
    position: absolute;
    background: rgb(102,105,178);
    top: 0.25rem;
    border-radius: 2px;
    height: 85%;
    width: 4px;
}.privacy-nook h3 {
    position: relative;
    font-size: calc(29px * 0.85);
    animation: slideUp 0.7s ease-out forwards 0.4s;
    padding-left: 0.8rem;
    font-weight: 600;
    transform: translateY(10px);
    opacity: 0;
    color: #000000;
    margin: 2.2rem 0 1.2rem;
}.privacy-nook h3::before {
    content: "";
    height: 80%;
    position: absolute;
    opacity: 0.8;
    top: 0.25rem;
    width: 3px;
    left: 0;
    background: rgb(102,105,178);
    border-radius: 1.5px;
}.privacy-nook h4 {
    margin: 2rem 0 1rem;
    opacity: 0;
    transform: translateY(10px);
    font-size: calc(29px * 0.75);
    padding-left: 0.7rem;
    color: #000000;
    font-weight: 600;
    animation: slideUp 0.7s ease-out forwards 0.5s;
    position: relative;
}.privacy-nook h4::before {
    height: 75%;
    content: "";
    width: 2px;
    background: rgb(102,105,178);
    opacity: 0.7;
    position: absolute;
    left: 0;
    top: 0.25rem;
    border-radius: 1px;
}.privacy-nook p {
    transform: translateY(10px);
    margin-bottom: 1.5rem;
    max-width: 90ch;
    font-size: 17px;
    animation: slideUp 0.7s ease-out forwards 0.4s;
    color: #000000;
    opacity: 0;
    line-height: 1.75;
}.privacy-nook ul {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards 0.6s;
    padding-left: 2rem;
    margin-bottom: 2rem;
    max-width: 85ch;
}.privacy-nook li {
    position: relative;
    padding-left: 0.5rem;
    line-height: 1.75;
    color: #000000;
    font-size: 17px;
    margin-bottom: 1rem;
}.privacy-nook li::marker {
    color: rgb(172,148,194);
    font-size: 1.2em;
}.privacy-nook span {
    border-left: 1px solid rgb(102,105,178,0.5);
    color: #000000;
    max-width: 90ch;
    line-height: 1.75;
    transform: translateY(10px);
    animation: slideUp 0.7s ease-out forwards 0.5s;
    opacity: 0;
    padding-left: 1rem;
    font-size: 17px;
    margin-bottom: 1.5rem;
    display: block;
}.privacy-nook strong {
    position: relative;
    font-weight: 600;
    display: inline-block;
    color: #000000;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@media (min-width: 768px) {.privacy-nook {
    padding: 6rem 3rem;
}.privacy-nook .container {
    padding: 0 2rem;
}.privacy-nook h1 {
    margin-bottom: 3rem;
    font-size: calc(38px * 1.1);
}.privacy-nook h1::after {
    width: 4.5rem;
}.privacy-nook h2 {
    margin: 3rem 0 1.8rem;
    padding-left: 1.2rem;
    font-size: calc(29px * 1.05);
}.privacy-nook h2::before {
    width: 5px;
}.privacy-nook p, 
    .privacy-nook li,
    .privacy-nook span {
    line-height: 1.8;
    font-size: calc(17px * 1.05);
}
}

@media (min-width: 992px) {.privacy-nook {
    background: linear-gradient(165deg, rgb(214,213,194), #ffffff);
    padding: 7rem 4rem;
}.privacy-nook .container {
    padding: 0 3rem;
}.privacy-nook h1 {
    margin-bottom: 3.5rem;
    font-size: calc(38px * 1.2);
}.privacy-nook h1::after {
    height: 4px;
    width: 5rem;
}.privacy-nook p {
    margin-bottom: 2rem;
}.privacy-nook h2::before {
    background: linear-gradient(to bottom, rgb(172,148,194), rgb(102,105,178));
}.privacy-nook li {
    margin-bottom: 1.2rem;
}.privacy-nook span {
    padding-left: 1.5rem;
    border-left: 2px solid rgb(102,105,178,0.5);
}
}

@media (min-width: 1200px) {.privacy-nook {
    padding: 8rem 5rem;
}.privacy-nook::before {
    background: 
            radial-gradient(circle at 5% 95%, rgb(102,105,178,0.5), transparent 40%),
            radial-gradient(circle at 95% 5%, rgb(172,148,194,0.5), transparent 45%);
}.privacy-nook .container {
    padding: 0 4rem;
}.privacy-nook h1 {
    font-size: calc(38px * 1.3);
}.privacy-nook h1::after {
    width: 5.5rem;
    bottom: -0.7rem;
    height: 5px;
}.privacy-nook ul {
    padding-left: 2.5rem;
}
}

@media (hover: hover) {.privacy-nook li:hover::marker {
    color: rgb(102,105,178);
}.privacy-nook strong:hover {
    color: rgb(172,148,194);
    transition: color 0.3s ease;
}
}

@media (max-width: 767px) {.privacy-nook {
    padding: 3rem 1.5rem;
}.privacy-nook h1 {
    margin-bottom: 1.8rem;
    font-size: calc(38px * 0.9);
}.privacy-nook h2 {
    font-size: calc(29px * 0.95);
    margin: 2rem 0 1.2rem;
}.privacy-nook p, 
    .privacy-nook li,
    .privacy-nook span {
    font-size: calc(17px * 0.98);
    line-height: 1.7;
}.privacy-nook ul {
    padding-left: 1.5rem;
}
}

@media (prefers-reduced-motion: reduce) {.privacy-nook .container,
    .privacy-nook h1,
    .privacy-nook h2,
    .privacy-nook h3,
    .privacy-nook h4,
    .privacy-nook p,
    .privacy-nook ul,
    .privacy-nook span {
    opacity: 1;
    transform: none;
    animation: none;
}.privacy-nook h1::after {
    animation: none;
    transform: scaleX(1);
}}header {
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
    background: linear-gradient(120deg, rgb(172,148,194) 0%, rgb(102,105,178) 100%);
    z-index: 100;
    position: relative;
    margin-top: 0;
    overflow: visible;
    padding: 0;
}header::before {
    top: 2px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: -1;
    left: 2px;
    content: '';
    bottom: 2px;
    right: 2px;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
    position: absolute;
}header .main-start {
    display: flex;
    z-index: 5;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1.2rem 3rem;
}header .nav-block {
    margin-right: 2rem;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    flex: 0 0 auto;
    position: relative;
    padding: 0.7rem 1.2rem 0.7rem 1rem;
}header .nav-block::before {
    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;
    bottom: 3px;
    top: 3px;
    content: '';
    position: absolute;
    left: 3px;
    right: 3px;
}header .nav-block:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
}header .head-nav {
    display: block;
    z-index: 1;
    transition: all 0.3s ease;
    position: relative;
}header .head-nav img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    max-height: 40px;
}header .head-guide {
    z-index: 2;
    display: flex;
    padding: 0;
    position: relative;
    list-style: none;
    margin: 0;
}header .top-lead {
    position: relative;
    margin: 0 0.5rem;
}header .top-lead a {
    text-decoration: none;
    color: #ffffff;
    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
    );
    font-size: 17px;
    padding: 0 1.2rem;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
    justify-content: center;
    align-items: center;
    display: flex;
}header .top-lead a::before {
    width: 100%;
    content: '';
    height: 100%;
    left: -100%;
    top: 0;
    transition: left 0.7s ease;
    position: absolute;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}header .top-lead a:hover {
    transform: translateY(-3px);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}header .top-lead a:hover::before {
    left: 100%;
}header .top-lead::after {
    height: 2px;
    content: '';
    width: 0;
    position: absolute;
    transition: width 0.3s ease;
    background: #ffffff;
    bottom: -5px;
    transform: translateX(-50%);
    left: 50%;
}header .top-lead:hover::after {
    width: 80%;
}header .main-start::before {
    height: 40px;
    width: 40px;
    position: absolute;
    top: 10px;
    opacity: 0.5;
    content: '';
    right: 10px;
    border-bottom: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-right: none;
}header .main-start::after {
    bottom: 10px;
    width: 40px;
    opacity: 0.5;
    border-left: none;
    left: 10px;
    content: '';
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    height: 40px;
    border-top: none;
}header .page-nav {
    position: relative;
    background: rgb(214,213,194);
    margin-top: -15px;
    z-index: 1;
    padding-top: 2rem;
}@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

header::after {
    position: absolute;
    border-radius: 50%;
    width: 8px;
    box-shadow: 0 0 10px #ffffff;
    content: '';
    height: 8px;
    right: 15px;
    top: 15px;
    background: #ffffff;
    animation: pulse 2s infinite;
}

@media (min-width: 1400px) {header .main-start {
    max-width: 1320px;
    margin: 0 auto;
}header .top-lead {
    margin: 0 0.7rem;
}header .top-lead 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 .main-start {
    flex-wrap: wrap;
    padding: 1rem 2rem;
}header .nav-block {
    margin-bottom: 0;
    margin-right: 0;
}header .head-guide {
    margin-top: 1rem;
    flex-basis: 100%;
    justify-content: flex-end;
}header .top-lead a {
    font-size: calc(17px - 1px);
    height: 35px;
    padding: 0 1rem;
}header .main-start::before,
    header .main-start::after {
    display: none;
}.page-nav {
    margin-top: -10px;
}
}

@media (max-width: 767px) {header {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 5px), 
            calc(100% - 5px) 100%, 
            5px 100%, 
            0 calc(100% - 5px)
        );
    padding: 0;
}header .main-start {
    padding: 0.8rem 1.5rem;
}header .nav-block {
    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 .head-nav img {
    max-height: 35px;
}header .head-guide {
    overflow-x: auto;
    margin-top: 0.8rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
}header .head-guide::-webkit-scrollbar {
    height: 3px;
}header .head-guide::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}header .top-lead {
    flex: 0 0 auto;
    margin: 0 0.25rem;
}header .top-lead a {
    white-space: nowrap;
    height: 32px;
    font-size: calc(17px - 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
        );
    padding: 0 0.8rem;
}header .top-lead::after {
    display: none;
}header::after {
    height: 5px;
    top: 10px;
    width: 5px;
    right: 10px;
}.page-nav {
    margin-top: -5px;
}
}

@media (max-width: 479px) {header .main-start {
    padding: 0.7rem 1.2rem;
}header .nav-block {
    max-width: 120px;
    padding: 0.4rem 0.6rem;
}header .top-lead a {
    font-size: calc(17px - 3px);
    padding: 0 0.6rem;
    height: 30px;
}}.course-methodology {
    perspective: 1000px;
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, rgb(214,213,194) 0%, rgba(rgb(172,148,194,0.5), 0.05) 100%);
}.course-methodology::before {
    filter: blur(15px);
    transform: rotate(-15deg) translateZ(-10px);
    top: -5%;
    background: linear-gradient(
        217deg, 
        rgba(rgb(172,148,194,0.5), 0.12), 
        rgba(rgb(102,105,178,0.5), 0.08) 70.71%
    );
    width: 30%;
    right: -10%;
    height: 50%;
    content: "";
    position: absolute;
    z-index: 1;
}.course-methodology::after {
    width: 35%;
    bottom: -5%;
    transform: rotate(15deg) translateZ(-5px);
    height: 60%;
    content: "";
    left: -10%;
    z-index: 1;
    background: linear-gradient(
        127deg, 
        rgba(rgb(102,105,178,0.5), 0.1), 
        rgba(rgb(172,148,194,0.5), 0.15) 70.71%
    );
    filter: blur(20px);
    position: absolute;
}.course-methodology .team-culture {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 30px;
    transform: translateZ(0);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}.course-methodology:hover .team-culture {
    transform: translateZ(10px);
}.course-methodology h2 {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    transform: translateZ(20px);
    transition: transform 0.5s ease;
    font-size: 35px;
    color: #000000;
}.course-methodology h2::before {
    transform: scaleX(1) translateZ(25px);
    bottom: -15px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    content: "";
    width: 80px;
    left: 0;
    transform-origin: left center;
    background: linear-gradient(90deg, rgb(172,148,194) 0%, rgb(102,105,178) 100%);
    height: 4px;
    position: absolute;
}.course-methodology:hover h2::before {
    transform: scaleX(1.5) translateZ(25px);
}.course-methodology .text-column {
    border-left: 4px solid rgb(172,148,194);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    transform: translateZ(10px) rotateX(2deg);
    box-shadow: 
        -15px 15px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
        15px -15px 30px rgba(rgb(255, 255, 255, 0.5), 0.05);
    background: linear-gradient(
        to right, 
        rgba(rgb(255, 255, 255, 0.5), 0.95), 
        rgba(rgb(255, 255, 255, 0.5), 0.9)
    );
    padding: 35px 40px;
}.course-methodology .text-column::before {
    content: "";
    z-index: -1;
    height: 100%;
    left: 0;
    background: linear-gradient(
        145deg, 
        rgba(rgb(255, 255, 255, 0.5), 0.1), 
        rgba(rgb(255, 255, 255, 0.5), 0)
    );
    width: 100%;
    top: 0;
    position: absolute;
}.course-methodology:hover .text-column {
    transform: translateZ(15px) rotateX(0deg);
    box-shadow: 
        -20px 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.08),
        20px -20px 40px rgba(rgb(255, 255, 255, 0.5), 0.08);
}.course-methodology p {
    margin: 0;
    line-height: 1.7;
    transition: transform 0.4s ease;
    color: #000000;
    font-size: 15px;
}.course-methodology:hover p {
    transform: translateZ(5px);
}

@media (min-width: 768px) {.course-methodology .text-column {
    margin-left: 30px;
    width: calc(100% - 60px);
}.course-methodology h2 {
    font-size: calc(35px * 1.1);
}
}

@media (min-width: 992px) {.course-methodology {
    padding: 150px 0;
}.course-methodology .team-culture {
    grid-template-columns: 1fr;
    display: grid;
    gap: 30px;
}.course-methodology h2 {
    margin-bottom: 50px;
    font-size: calc(35px * 1.2);
}.course-methodology .text-column {
    width: calc(100% - 100px);
    padding: 45px 60px;
    margin-left: 50px;
}.course-methodology p {
    line-height: 1.8;
    font-size: calc(15px * 1.05);
}
}

@media (max-width: 767px) {.course-methodology {
    padding: 80px 0;
}.course-methodology .team-culture {
    padding: 0 20px;
}.course-methodology h2 {
    margin-bottom: 30px;
    font-size: calc(35px * 0.9);
}.course-methodology h2::before {
    width: 60px;
    height: 3px;
    bottom: -10px;
}.course-methodology .text-column {
    padding: 25px 20px;
    border-left-width: 3px;
    transform: translateZ(5px) rotateX(1deg);
}.course-methodology:hover .text-column {
    transform: translateZ(8px) rotateX(0deg);
}.course-methodology p {
    font-size: calc(15px * 0.95);
    line-height: 1.6;
}
}

@media (max-width: 480px) {.course-methodology {
    padding: 60px 0;
}.course-methodology .team-culture {
    padding: 0 15px;
}.course-methodology h2 {
    margin-bottom: 25px;
    font-size: calc(35px * 0.8);
}.course-methodology h2::before {
    width: 50px;
    height: 3px;
}.course-methodology .text-column {
    border-left-width: 3px;
    padding: 20px 15px;
}.course-methodology p {
    line-height: 1.5;
    font-size: calc(15px * 0.9);
}}.title-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(214,213,194) 0%, rgb(102,105,178,0.5) 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}.title-page::before {
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(102,105,178,0.5) 0px,
        rgb(102,105,178,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    top: 0;
    pointer-events: none;
    position: absolute;
    content: "";
    height: 100%;
    opacity: 0.05;
    z-index: 1;
    width: 100%;
}.title-page .icon-image {
    height: 100%;
    left: 0;
    width: 100%;
    transform: scale(1.05);
    z-index: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 85% 100%, 0% 100%);
    position: absolute;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    top: 0;
}.title-page:hover .icon-image {
    transform: scale(1.1);
}.title-page .icon-image::after {
    content: "";
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
}.title-page .team-culture {
    z-index: 2;
    min-height: 100vh;
    display: flex;
    position: relative;
    padding: 6rem 2rem;
    max-width: 1400px;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
}.title-page h1 {
    opacity: 0;
    position: relative;
    font-weight: 700;
    font-size: calc(41px * 1.2);
    color: #ffffff;
    animation: slide-in 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform: translateX(-50px);
    margin-bottom: 2rem;
    max-width: 60%;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}.title-page h1::after {
    width: 80px;
    height: 4px;
    bottom: -15px;
    content: "";
    left: 0;
    background: rgb(172,148,194);
    transform-origin: left;
    transform: scaleX(0);
    position: absolute;
    animation: scale-in 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}.title-page .text-column {
    border-left: 3px solid rgb(172,148,194);
    transform: translateY(30px);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(30, 30, 40, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    position: relative;
    max-width: 550px;
    animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
    padding: 2.5rem;
    opacity: 0;
}.title-page .text-column::before {
    left: -3px;
    top: -3px;
    content: "";
    height: calc(100% + 6px);
    position: absolute;
    width: calc(100% + 6px);
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 95%);
    opacity: 0.5;
    z-index: -1;
    border: 1px solid rgb(102,105,178,0.5);
}.title-page p {
    line-height: 1.6;
    font-weight: 400;
    font-size: calc(14px * 1.1);
    margin-bottom: 2rem;
    color: #ffffff;
}.title-page .learn-techfast {
    justify-content: center;
    margin: 2rem 0 2.5rem;
    position: relative;
    display: flex;
}.title-page .learn-techfast::before,
.title-page .learn-techfast::after {
    content: "";
    width: 30%;
    background: rgb(102,105,178,0.5);
    position: absolute;
    height: 1px;
    top: 50%;
}.title-page .learn-techfast::before {
    left: 0;
}.title-page .learn-techfast::after {
    right: 0;
}.title-page svg {
    width: 120px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transform: scale(0.9);
    height: 120px;
    transition: transform 0.4s ease;
}.title-page svg:hover {
    transform: scale(1);
}.title-page svg path {
    fill: rgb(172,148,194);
    transition: fill 0.3s ease;
}.title-page svg:hover path {
    fill: rgb(102,105,178);
}.title-page svg text {
    font-family: Arial, sans-serif;
    transition: fill 0.3s ease;
}.title-page svg:hover text {
    fill: rgb(172,148,194);
}.title-page h6 {
    text-align: center;
}.title-page .message-requestMJ2 {
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        rgb(172,148,194) 0%,
        rgb(102,105,178) 100%
    );
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transform: translateY(0);
    font-size: 20px;
    padding: 1rem 2.5rem;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 20px rgba(94, 170, 168, 0.3);
    overflow: hidden;
    text-decoration: none;
}.title-page .message-requestMJ2::before {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    height: 100%;
    z-index: -1;
    width: 100%;
    content: "";
    top: 0;
    background: linear-gradient(
        135deg,
        rgb(102,105,178) 0%,
        rgb(172,148,194) 100%
    );
    left: 0;
}.title-page .message-requestMJ2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(94, 170, 168, 0.4);
}.title-page .message-requestMJ2:hover::before {
    opacity: 1;
}.title-page .message-requestMJ2::after {
    width: 10px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    background: rgba(255, 255, 255, 0.3);
    height: 10px;
    transition: transform 0.5s ease;
    top: 50%;
    content: "";
    border-radius: 50%;
}.title-page .message-requestMJ2:hover::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(15);
}

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

@keyframes scale-in {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

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

@media (max-width: 992px) {.title-page h1 {
    font-size: 41px;
    max-width: 80%;
}.title-page .text-column {
    max-width: 90%;
}
}

@media (max-width: 768px) {.title-page .team-culture {
    padding: 4rem 1.5rem;
}.title-page h1 {
    max-width: 100%;
    font-size: calc(41px * 0.9);
}.title-page .icon-image {
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
}.title-page .text-column {
    padding: 2rem;
}.title-page p {
    font-size: 14px;
}.title-page svg {
    width: 100px;
    height: 100px;
}.title-page .learn-techfast::before,
    .title-page .learn-techfast::after {
    width: 20%;
}.title-page .message-requestMJ2 {
    padding: 0.9rem 2rem;
}
}

@media (max-width: 576px) {.title-page .team-culture {
    padding: 3rem 1rem;
}.title-page h1 {
    text-align: center;
    font-size: calc(41px * 0.8);
}.title-page h1::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
}.title-page h1:not(:empty)::after {
    animation: scale-in-center 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}.title-page .text-column {
    border-left: none;
    border-top: 3px solid rgb(172,148,194);
    text-align: center;
    padding: 1.5rem;
}.title-page svg {
    height: 80px;
    width: 80px;
}.title-page .learn-techfast::before,
    .title-page .learn-techfast::after {
    width: 15%;
}.title-page .message-requestMJ2 {
    font-size: calc(20px * 0.9);
    padding: 0.8rem 1.8rem;
}
}

@keyframes scale-in-center {
    0% {
        transform: translateX(-50%) scaleX(0);
    }
    100% {
        transform: translateX(-50%) scaleX(1);
    }
}