:root {
    --chBackground: #040404;
    --chAccent: #a9f8b5;
    --chSubtitle: linear-gradient(78.12deg, #A9F8B5 0.32%, #DFF494 99.52%);
    --chHeading: #111;
    --chText: #e1e1e1;
    --chButton: linear-gradient(78.12deg, #A9F8B5 0.32%, #DFF494 99.52%);
    --chBlock: #040404;
    --chBorder: #29292a;
    --chFooter: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--chBackground);
    color: var(--chText);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syne', sans-serif;
    color: #fff;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.chContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.chHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(4, 4, 4, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--chBorder);
}

.chHeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.chLogo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.chLogo img {
    width: 40px;
}

.chFooterLogo {
    display: flex;
    align-items: center;
}

.chFooterLogo img {
    width: 40px;
}

.chNav {
    display: flex;
    gap: 30px;
}

.chNavLink {
    font-weight: 500;
    transition: color 0.3s ease;
}

.chNavLink:hover {
    color: var(--chAccent);
}

.chContactButton {
    background: var(--chButton);
    color: var(--chHeading);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.chContactButton:hover {
    transform: translateY(-2px);
}

.chMobileMenuToggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.chBanner {
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    gap: 50px;
    background: url('../img/bg_wcu.png') center bottom no-repeat;
}

.chBannerContent {
    flex: 1;
}

.chBannerImage {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chBannerImage img {
    width: 100%;
    height: auto;
    display: block;
}

.chBanner-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.chSubtitle {
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.chTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.chTitle span {
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chDescription {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b0b0b0;
}

.chStartButton {
    background: var(--chButton);
    color: var(--chHeading);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.chStartButton:hover {
    transform: translateY(-3px);
}


.chAboutPlatform {
    padding: 100px 0;
}

.chAboutContent {
    display: flex;
    align-items: center;
    gap: 50px;
}

.chAboutImage {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chAboutImage img {
    width: 100%;
    height: auto;
    display: block;
}

.chAboutText {
    flex: 1;
}

.chAboutTitle {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.chAboutDescription {
    margin-bottom: 30px;
    color: #b0b0b0;
}

.chTags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.chTag {
    background: rgba(169, 248, 181, 0.1);
    border: 1px solid rgba(169, 248, 181, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}


.chProgram {
    padding: 100px 0;
}

.chSectionTitle {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
}

.chProgramGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.chProgramItem {
    background: var(--chBlock);
    border: 1px solid var(--chBorder);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chProgramItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.chProgramIcon {
    font-size: 40px;
    margin-bottom: 20px;
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chProgramItemTitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.chProgramItemDescription {
    margin-bottom: 20px;
    color: #b0b0b0;
}

.chProgramLink {
    color: var(--chAccent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.chProgramLink:hover {
    gap: 10px;
}


.chStats {
    padding: 100px 0;
    background: rgba(34, 34, 34, 0.5) url('../img/bg_heading.png') center no-repeat;
}

.chStatsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.chStatItem {
    text-align: center;
}

.chStatNumber {
    font-size: 48px;
    font-weight: 700;
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.chStatLabel {
    font-size: 18px;
    color: #b0b0b0;
}


.chLearningFormats {
    padding: 100px 0;
}

.chFormatsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.chFormatItem {
    background: var(--chBlock);
    border: 1px solid var(--chBorder);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chFormatItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.chFormatIcon {
    font-size: 50px;
    margin-bottom: 20px;
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chFormatTitle {
    font-size: 24px;
    margin-bottom: 15px;
}

.chFormatDescription {
    color: #b0b0b0;
}


.chTestimonials {
    padding: 100px 0;
    background: rgba(34, 34, 34, 0.5) url('../img/bg_heading.png') center no-repeat;
}

.chTestimonialSlider {
    margin: 0 -15px;
}

.chTestimonialItem {
    background: var(--chBlock);
    border: 1px solid var(--chBorder);
    border-radius: 10px;
    padding: 30px;
    margin: 0 15px;
}

.chTestimonialHeader {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.chTestimonialAvatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.chTestimonialAvatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chTestimonialInfo {
    flex: 1;
}

.chTestimonialName {
    font-weight: 600;
    margin-bottom: 5px;
}

.chTestimonialRole {
    color: #b0b0b0;
    font-size: 14px;
}

.chTestimonialStars {
    color: #ffc107;
    margin-bottom: 15px;
}

.chTestimonialText {
    color: #b0b0b0;
    font-style: italic;
}


.chCta {
    padding: 100px 0;
    text-align: center;
    background: url('../img/bg_heading.png') center no-repeat;
}

.chCtaContent {
    max-width: 700px;
    margin: 0 auto;
}

.chCtaTitle {
    font-size: 36px;
    margin-bottom: 20px;
}

.chCtaDescription {
    margin-bottom: 30px;
    color: #b0b0b0;
}


.chFooter {
    background: #000;
    padding: 60px 0 30px;
}

.chFooterContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.chFooterLogo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.chFooterDescription {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.chFooterMenu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chFooterMenuTitle {
    font-size: 18px;
    margin-bottom: 15px;
}

.chFooterContact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chFooterContactItem {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chFooterBottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--chBorder);
}

.chFooterLinks {
    display: flex;
    gap: 20px;
}

.chCopyright {
    color: #b0b0b0;
}


.chCookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;

    background: var(--chBlock);
    border: 1px solid var(--chBorder);
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    z-index: 1001;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.chCookieTitle {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.chCookieText {
    margin-bottom: 20px;
    color: #b0b0b0;
}

.chCookieButtons {
    display: flex;
    gap: 10px;
}

.chCookieButton {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chCookieAccept {
    background: var(--chButton);
    color: var(--chHeading);
}

.chCookieDecline {
    background: transparent;
    border: 1px solid var(--chBorder);
}

.chNavMobile {
    display: none;
}


.chPageBanner {
    padding: 150px 0 70px;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.8) 0%, rgba(4, 4, 4, 0.9) 100%);
}

.chPageTitle {
    font-size: 48px;
    margin-bottom: 20px;
}

.chPageSubtitle {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.chAboutMission {
    padding: 100px 0;
}

.chMissionContent {
    display: flex;
    align-items: center;
    gap: 60px;
}

.chMissionText {
    flex: 1;
}

.chMissionText .chSectionTitle {
    text-align: left;
}

.chMissionImage {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.chMissionImage img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.chMissionImage:hover img {
    transform: scale(1.05);
}

.chHighlightBox {
    background: rgba(169, 248, 181, 0.05);
    border-left: 4px solid var(--chAccent);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin-top: 30px;
}

.chHighlightText {
    font-size: 18px;
    font-style: italic;
    color: #e1e1e1;
}

.chValues {
    padding: 100px 0;
    background: rgba(34, 34, 34, 0.5) url('../img/bg_wcu.png') left center no-repeat;
}

.chValuesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.chValueItem {
    background: var(--chBlock);
    border: 1px solid var(--chBorder);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chValueItem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--chSubtitle);
}

.chValueItem:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.chValueIcon {
    font-size: 50px;
    margin-bottom: 20px;
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chValueTitle {
    font-size: 24px;
    margin-bottom: 15px;
}

.chValueDescription {
    color: #b0b0b0;
}


.chLearningApproach {
    padding: 100px 0;
}

.chApproachContent {
    display: flex;
    align-items: center;
    gap: 60px;
}

.chApproachImage {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.chApproachImage img {
    width: 100%;
    height: auto;
    display: block;
}

.chApproachText {
    flex: 1;
}

.chApproachText .chSectionTitle {
    text-align: left;
}

.chCurriculumText .chSectionTitle {
    text-align: left;
}

.chContactInfo .chSectionTitle {
    text-align: left;
}

.chApproachFeatures {
    margin-top: 30px;
}

.chApproachFeature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #b0b0b0;
}

.chApproachFeature i {
    color: var(--chAccent);
    font-size: 20px;
}

.chCurriculumDetails {
    padding: 100px 0;
    background: rgba(34, 34, 34, 0.5);
}

.chCurriculumContent {
    display: flex;
    align-items: center;
    gap: 60px;
}

.chCurriculumText {
    flex: 1;
}

.chCurriculumImage {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.chCurriculumImage img {
    width: 100%;
    height: auto;
    display: block;
}

.chCurriculumLevels {
    margin-top: 30px;
}

.chLevel {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--chBorder);
}

.chLevel:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.chLevel h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--chAccent);
}

.chLevel p {
    color: #b0b0b0;
}

.chEducationCta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.8) 0%, rgba(4, 4, 4, 0.9) 100%);
}


.chContactSection {
    padding: 100px 0;
}

.chContactContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.chContactFormContainer {
    background: var(--chBlock);
    border: 1px solid var(--chBorder);
    border-radius: 15px;
    padding: 40px;
}

.chContactForm {
    margin-top: 30px;
}

.chFormGroup {
    position: relative;
    margin-bottom: 30px;
}

.chFormGroup input,
.chFormGroup select,
.chFormGroup textarea {
    width: 100%;
    padding: 15px;
    background: rgba(41, 41, 42, 0.3);
    border: 1px solid var(--chBorder);
    border-radius: 8px;
    color: var(--chText);
    font-size: 16px;
    transition: all 0.3s ease;
}

.chFormGroup label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #b0b0b0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.chFormGroup input:focus,
.chFormGroup select:focus,
.chFormGroup textarea:focus {
    border-color: var(--chAccent);
    outline: none;
}

.chFormGroup input:focus+label,
.chFormGroup select:focus+label,
.chFormGroup textarea:focus+label,
.chFormGroup input:valid+label,
.chFormGroup select:valid+label,
.chFormGroup textarea:valid+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: var(--chBlock);
    padding: 0 5px;
    color: var(--chAccent);
}

.chSubmitButton {
    background: var(--chButton);
    color: var(--chHeading);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chSubmitButton:hover {
    transform: translateY(-3px);
}

.chThankYouMessage {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.chThankYouMessage i {
    font-size: 60px;
    color: var(--chAccent);
    margin-bottom: 20px;
}

.chThankYouMessage h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.chContactInfo {
    padding: 20px 0;
}

.chContactInfoItems {
    margin: 40px 0;
}

.chContactInfoItem {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(41, 41, 42, 0.3);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.chContactInfoItem:hover {
    transform: translateX(10px);
}

.chContactIcon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(169, 248, 181, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chContactIcon i {
    font-size: 24px;
    color: var(--chAccent);
}

.chContactDetails h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.chContactDetails p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.chContactDetails span {
    color: #b0b0b0;
    font-size: 14px;
}

.chSocialLinks h3 {
    margin-bottom: 15px;
}

.chSocialIcons {
    display: flex;
    gap: 15px;
}

.chSocialIcons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(41, 41, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chSocialIcons a:hover {
    background: var(--chAccent);
    color: var(--chHeading);
    transform: translateY(-3px);
}


@media (max-width: 992px) {

    .chMissionContent,
    .chValuesGrid,
    .chApproachContent,
    .chCurriculumContent,
    .chContactContent {
        grid-template-columns: 1fr;
    }

    .chMissionContent,
    .chApproachContent,
    .chCurriculumContent {
        flex-direction: column;
    }

    .chValuesGrid {
        gap: 20px;
    }
}




.chPageTitle {
    font-size: 48px;
    margin-bottom: 20px;
}

.chPageSubtitle {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}


.chTextContent {
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.chContentSection {
    margin-bottom: 50px;
}

.chContentSection:last-child {
    margin-bottom: 0;
}

.chContentTitle {
    font-size: 32px;
    margin-bottom: 20px;
    background: var(--chSubtitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chContentSubtitle {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--chText);
}

.chContentText {
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 16px;
}

.chContentList {
    margin: 20px 0;
    padding-left: 30px;
    color: #b0b0b0;
}

.chContentList li {
    margin-bottom: 10px;
}

.chHighlightBox {
    background: rgba(169, 248, 181, 0.05);
    border-left: 4px solid var(--chAccent);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
}

.chUpdateDate {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--chBorder);
    color: #b0b0b0;
    font-size: 14px;
}


@media (max-width: 768px) {
    .chPageTitle {
        font-size: 36px;
    }

    .chContentTitle {
        font-size: 28px;
    }

    .chContentSubtitle {
        font-size: 22px;
    }

    .chContentList {
        padding-left: 20px;
    }
}












































@media (max-width: 992px) {

    .chBanner,
    .chAboutContent {
        flex-direction: column;
    }

    .chProgramGrid,
    .chStatsGrid,
    .chFormatsGrid,
    .chFooterContent {
        grid-template-columns: 1fr;
    }

    .chNav {
        display: none;
    }

    .chMobileMenuToggle {
        display: block;
    }

    .chNavMobile {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--chBackground);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        border-bottom: 1px solid var(--chBorder);
        display: none;
    }

    .chNavMobile.active {
        display: flex;
    }
}

@media(max-width: 767px) {
    .chBannerImage {
        display: none;
    }

    .chBanner {
        background-position: left center;
        padding: 170px 0 90px 0;
    }

    .chTitle {
        font-size: 44px;
    }

    .chDescription {
        font-size: 16px;
    }
}


.chFadeIn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.chFadeIn.active {
    opacity: 1;
    transform: translateY(0);
}

.chCounter {
    display: inline-block;
}

@media(max-width: 480px) {
    .chFooterLinks {
        gap: 5px;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .chTestimonials {
        padding: 60px 0 20px 0;
    }

    .chProgram {
        padding-top: 0;
    }

    .chPageTitle {
        font-size: 36px;
    }
    .chContactButton{
        font-size: 14px;
        padding: 8px 18px;
    }
}