:root {
    --iew_bg: #16142a;
    --iew_accent: #a034fa;
    --iew_heading: #fff;
    --iew_text: #d0d0d0;
    --iew_container: 1170px;
    --iew_border: 2px solid rgba(255, 255, 255, 0.05);
    --iew_block_bg: linear-gradient(150deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    --iew_button_bg: linear-gradient(135deg, #572c7c 0%, #572c7c 50%, #a034fa 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--iew_bg) url('../img/pattern.png') center;
    color: var(--iew_text);
    line-height: 1.52;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    line-height: 1.25;
}

.iew_container {
    max-width: var(--iew_container);
    margin: 0 auto;
    padding: 0 15px;
}


.iew_header {
    padding: 14px 0;
    border-bottom: var(--iew_border);
    position: sticky;
    top: 0;
    background-color: rgba(22, 20, 42, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}

.iew_header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iew_logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--iew_heading);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.iew_logo img {
    width: 32px;
    margin-right: 7px;
    margin-top: 4px;
}

.iew_logo i {
    color: var(--iew_accent);
    margin-right: 10px;
}

.iew_nav {
    display: flex;
    align-items: center;
}

.iew_nav_list {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

.iew_nav_item {
    margin: 0 15px;
}

.iew_nav_link {
    color: var(--iew_text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
}

.iew_nav_link:hover {
    color: var(--iew_accent);
}

.iew_button {
    background: var(--iew_button_bg);
    border: var(--iew_border);
    color: var(--iew_heading);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.iew_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(160, 52, 250, 0.3);
}

.iew_menu_toggle {
    display: none;
    background: none;
    border: none;
    color: var(--iew_heading);
    font-size: 24px;
    cursor: pointer;
}


.iew_banner {
    padding: 230px 0 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('../img/banner.png') center bottom no-repeat;
    background-size: cover;
}

.iew_banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(160, 52, 250, 0.1) 0%, rgba(22, 20, 42, 0) 70%);
    z-index: -1;
    animation: pulse 15s infinite linear;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.iew_banner_title {
    font-size: 48px;
    color: var(--iew_heading);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.iew_banner_text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}


.iew_about {
    padding: 80px 0;
}

.iew_section_title {
    font-size: 36px;
    color: var(--iew_heading);
    margin-bottom: 20px;
    font-weight: 700;
}

.iew_section_text {
    margin-bottom: 30px;
}

.iew_about_content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.iew_about_text {
    flex: 1;
}

.iew_about_image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    border: var(--iew_border);
}

.iew_about_image img {
    width: 100%;
    height: auto;
    display: block;
}

.iew_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.iew_tag {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
}


.iew_program {
    padding: 80px 0;
}

.iew_program_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.iew_program_item {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
}

.iew_program_item:hover {
    transform: translateY(-5px);
}

.iew_program_icon {
    font-size: 28px;
    color: #fff;
    margin-bottom: 7px;
}

.iew_program_title {
    font-size: 20px;
    color: var(--iew_heading);
    margin-bottom: 15px;
    font-weight: 600;
}

.iew_program_link {
    color: var(--iew_accent);
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.iew_program_link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.iew_program_link:hover i {
    transform: translateX(5px);
}


.iew_process {
    padding: 80px 0;
}

.iew_process_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.iew_process_item {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.iew_process_icon {
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.iew_process_content {
    flex: 1;
}

.iew_process_title {
    font-size: 20px;
    color: var(--iew_heading);
    margin-bottom: 10px;
    font-weight: 600;
}


.iew_why {
    padding: 80px 0;
}

.iew_why_content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.iew_why_image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    border: var(--iew_border);
}

.iew_why_image img {
    width: 100%;
    height: auto;
    display: block;
}

.iew_why_text {
    flex: 1;
}

.iew_list {
    list-style: none;
    margin-top: 20px;
}

.iew_list_item {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.iew_list_item i {
    color: var(--iew_accent);
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}


.iew_testimonials {
    padding: 80px 0;
}

.iew_testimonials_slider {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
}

.iew_testimonials_track {
    display: flex;
    transition: transform 0.5s ease;
}

.iew_testimonial {
    flex: 0 0 50%;
    padding: 0 15px;
}

.iew_testimonial_content {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.iew_testimonial_rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.iew_testimonial_text {
    margin-bottom: 20px;
    font-style: italic;
}

.iew_testimonial_author {
    font-weight: 600;
    color: var(--iew_heading);
}

.iew_testimonial_role {
    font-size: 14px;
    color: var(--iew_text);
    opacity: 0.7;
}

.iew_slider_nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.iew_slider_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.iew_slider_dot.active {
    background: var(--iew_accent);
}


.iew_footer {
    background: var(--iew_block_bg);
    padding: 70px 0 20px;
    border-top: var(--iew_border);
}

.iew_footer_content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.iew_footer_logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--iew_heading);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.iew_footer_logo img {
    width: 32px;
    margin-right: 7px;
    margin-top: 4px;
}

.iew_footer_logo i {
    color: var(--iew_accent);
    margin-right: 10px;
}

.iew_footer_about {
    margin-bottom: 20px;
}

.iew_footer_heading {
    color: var(--iew_heading);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.iew_footer_links {
    list-style: none;
}

.iew_footer_link {
    margin-bottom: 10px;
}

.iew_footer_link a {
    color: var(--iew_text);
    text-decoration: none;
    transition: color 0.3s;
}

.iew_footer_link a:hover {
    color: var(--iew_accent);
}

.iew_footer_contact {
    list-style: none;
}

.iew_footer_contact_item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.iew_footer_contact_item i {
    color: var(--iew_accent);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.iew_footer_bottom {
    padding-top: 20px;
    border-top: var(--iew_border);
    text-align: center;
    font-size: 14px;
    color: rgba(208, 208, 208, 0.7);
}


.iew_cookie_popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #16142a;
    border: var(--iew_border);
    border-radius: 10px;
    padding: 30px;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
}

.iew_cookie_title {
    color: var(--iew_heading);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.iew_cookie_options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.iew_cookie_option {
    background: rgba(255, 255, 255, 0.05);
    border: var(--iew_border);
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.iew_cookie_option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.iew_cookie_option.active {
    border-color: var(--iew_accent);
    background: rgba(160, 52, 250, 0.1);
}

.iew_cookie_option_title {
    color: var(--iew_heading);
    font-weight: 600;
    margin-bottom: 5px;
}

.iew_cookie_option_text {
    font-size: 14px;
}

.iew_cookie_actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.iew_cookie_button {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.iew_cookie_accept {
    background: var(--iew_button_bg);
    border: var(--iew_border);
    color: var(--iew_heading);
}

.iew_cookie_reject {
    background: transparent;
    border: var(--iew_border);
    color: var(--iew_text);
}

.iew_cookie_accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(160, 52, 250, 0.3);
}

.iew_cookie_reject:hover {
    background: rgba(255, 255, 255, 0.05);
}

.iew_page_header {
    margin-top: 150px;
}

.iew_contact_section {
    padding: 100px 0;
}

.iew_contact_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.iew_contact_form_container {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    border-radius: 10px;
    padding: 40px;
}

.iew_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.iew_form_group {
    margin-bottom: 25px;
}

.iew_form_label {
    display: block;
    color: var(--iew_heading);
    margin-bottom: 8px;
    font-weight: 600;
}

.iew_form_input,
.iew_form_textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: var(--iew_border);
    border-radius: 5px;
    padding: 12px 15px;
    color: var(--iew_text);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.iew_form_input:focus,
.iew_form_textarea:focus {
    outline: none;
    border-color: var(--iew_accent);
    background: rgba(255, 255, 255, 0.08);
}

.iew_form_textarea {
    resize: vertical;
    min-height: 120px;
}

.iew_form_button {
    width: 100%;
    margin-top: 10px;
}

.iew_form_success {
    background: rgba(160, 52, 250, 0.1);
    border: 1px solid var(--iew_accent);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.iew_success_icon {
    font-size: 48px;
    color: var(--iew_accent);
    margin-bottom: 20px;
}

.iew_success_title {
    color: var(--iew_heading);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.iew_success_text {
    color: var(--iew_text);
}

.iew_contact_info {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    border-radius: 10px;
    padding: 40px;
}

.iew_contact_items {
    margin: 30px 0;
}

.iew_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.iew_contact_item:last-child {
    border-bottom: none;
}

.iew_contact_icon {
    font-size: 24px;
    color: var(--iew_accent);
    background: rgba(160, 52, 250, 0.1);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.iew_contact_title {
    color: var(--iew_heading);
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.iew_contact_text {
    color: var(--iew_text);
    font-size: 16px;
    margin-bottom: 5px;
}

.iew_contact_note {
    color: var(--iew_text);
    opacity: 0.7;
    font-size: 14px;
}

.iew_contact_support {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.iew_contact_support_title {
    color: var(--iew_heading);
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.iew_contact_support_text {
    color: var(--iew_text);
    font-size: 14px;
}

.iew_link {
    color: var(--iew_accent);
    text-decoration: none;
}

.iew_link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .iew_contact_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .iew_form_row {
        grid-template-columns: 1fr;
    }

    .iew_contact_form_container,
    .iew_contact_info {
        padding: 30px 20px;
    }
}




@keyframes iew_pulse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




.iew_about_section {
    padding: 100px 0;
}

.iew_section_title {
    font-size: 36px;
    color: var(--iew_heading);
    margin-bottom: 20px;
    font-weight: 700;
}

.iew_section_text {
    margin-bottom: 30px;
    line-height: 1.7;
}

.iew_about_content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.iew_about_text {
    flex: 1;
}

.iew_about_image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    border: var(--iew_border);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.iew_about_image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(160, 52, 250, 0.2);
}

.iew_about_image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.iew_about_image:hover img {
    transform: scale(1.05);
}

.iew_about_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(160, 52, 250, 0.1) 0%, rgba(22, 20, 42, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.iew_about_image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--iew_accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.iew_about_image:hover::after {
    transform: scaleX(1);
}

.iew_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.iew_stat {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.iew_stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 52, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.iew_stat:hover::before {
    left: 100%;
}

.iew_stat:hover {
    transform: translateY(-5px);
    border-color: rgba(160, 52, 250, 0.3);
}

.iew_stat_number {
    font-size: 48px;
    color: var(--iew_accent);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    background: linear-gradient(135deg, var(--iew_accent) 0%, #c264ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iew_stat_text {
    font-size: 16px;
    color: var(--iew_heading);
    font-weight: 600;
}

.iew_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.iew_tag {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.iew_tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 52, 250, 0.2), transparent);
    transition: left 0.5s ease;
}

.iew_tag:hover::before {
    left: 100%;
}

.iew_tag:hover {
    border-color: var(--iew_accent);
    transform: translateY(-2px);
}


.iew_education_section {
    padding: 100px 0;
}

.iew_education_content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.iew_education_text {
    flex: 1;
}

.iew_education_image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    border: var(--iew_border);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.iew_education_image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(160, 52, 250, 0.2);
}

.iew_education_image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.iew_education_image:hover img {
    transform: scale(1.05);
}

.iew_education_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(160, 52, 250, 0.1) 0%, rgba(22, 20, 42, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.iew_page_title{
    color: #fff;
}

.iew_modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.iew_module {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    border-radius: 10px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.iew_module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--iew_accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.iew_module:hover::before {
    transform: scaleY(1);
}

.iew_module:hover {
    transform: translateY(-5px);
    border-color: rgba(160, 52, 250, 0.3);
}

.iew_module_icon {
    font-size: 28px;
    color: var(--iew_accent);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.iew_module:hover .iew_module_icon {
    transform: scale(1.1);
}

.iew_module_title {
    font-size: 22px;
    color: var(--iew_heading);
    margin-bottom: 15px;
    font-weight: 600;
}

.iew_module_list {
    list-style: none;
    margin-top: 20px;
}

.iew_module_item {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.iew_module_item:hover {
    transform: translateX(5px);
}

.iew_module_item i {
    color: var(--iew_accent);
    margin-right: 12px;
    margin-top: 5px;
    flex-shrink: 0;
    font-size: 16px;
}

.iew_cta {
    background: var(--iew_block_bg);
    border: var(--iew_border);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.iew_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(160, 52, 250, 0.05) 0%, rgba(22, 20, 42, 0) 50%);
    pointer-events: none;
}

.iew_cta_title {
    font-size: 32px;
    color: var(--iew_heading);
    margin-bottom: 20px;
    font-weight: 700;
}

.iew_cta_text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.6;
}


@media (max-width: 1200px) {
    .iew_stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .iew_modules {
        grid-template-columns: 1fr;
    }

    .iew_about_content,
    .iew_education_content {
        flex-direction: column;
    }

    .iew_page_title {
        font-size: 36px;
    }

    .iew_section_title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .iew_about_section,
    .iew_education_section {
        padding: 80px 0;
    }

    .iew_stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .iew_stat {
        padding: 30px 20px;
    }

    .iew_stat_number {
        font-size: 36px;
    }

    .iew_module {
        padding: 30px 20px;
    }

    .iew_cta {
        padding: 40px 20px;
    }

    .iew_cta_title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .iew_page_title {
        font-size: 32px;
    }

    .iew_section_title {
        font-size: 24px;
    }

    .iew_tags {
        gap: 10px;
    }

    .iew_tag {
        padding: 8px 16px;
        font-size: 12px;
    }
}

    .iew_legal_header {
        padding: 100px 0 50px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .iew_legal_header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(160, 52, 250, 0.1) 0%, rgba(22, 20, 42, 0) 70%);
        z-index: -1;
        animation: iew_pulse 15s infinite linear;
    }
    
    @keyframes iew_pulse {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    .iew_legal_title {
        font-size: 48px;
        color: var(--iew_heading);
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .iew_legal_meta {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        opacity: 0.8;
    }
    
    .iew_legal_date {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }
    
    .iew_legal_date i {
        color: var(--iew_accent);
    }
    
    
    .iew_legal_section {
        padding: 80px 0;
    }
    
    .iew_legal_content {
        background: var(--iew_block_bg);
        border: var(--iew_border);
        border-radius: 15px;
        padding: 60px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .iew_legal_intro {
        font-size: 18px;
        margin-bottom: 40px;
        color: var(--iew_heading);
        font-weight: 500;
        line-height: 1.7;
    }
    
    .iew_legal_article {
        margin-bottom: 50px;
    }
    
    .iew_legal_article:last-child {
        margin-bottom: 0;
    }
    
    .iew_article_title {
        font-size: 24px;
        color: var(--iew_heading);
        margin-bottom: 20px;
        font-weight: 600;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .iew_article_text {
        margin-bottom: 15px;
        line-height: 1.7;
    }
    
    .iew_article_list {
        margin: 20px 0;
        padding-left: 20px;
    }
    
    .iew_article_item {
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .iew_article_highlight {
        background: rgba(160, 52, 250, 0.1);
        border-left: 3px solid var(--iew_accent);
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
    }
    
    .iew_contact_ref {
        background: var(--iew_block_bg);
        border: var(--iew_border);
        border-radius: 10px;
        padding: 30px;
        margin-top: 40px;
        text-align: center;
    }
    
    .iew_contact_ref_title {
        color: var(--iew_heading);
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    
    @media (max-width: 768px) {
        .iew_legal_title {
            font-size: 36px;
        }
        
        .iew_legal_content {
            padding: 40px 30px;
        }
    }
    
    @media (max-width: 576px) {
        .iew_legal_title {
            font-size: 32px;
        }
        
        .iew_legal_content {
            padding: 30px 20px;
        }
        
        .iew_legal_meta {
            flex-direction: column;
            gap: 10px;
        }
        
        .iew_article_title {
            font-size: 20px;
        }
    }



































@media (max-width: 992px) {
    .iew_program_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .iew_testimonial {
        flex: 0 0 100%;
    }

    .iew_footer_content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .iew_cookie_options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .iew_menu_toggle {
        display: block;
    }

    .iew_nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--iew_bg);
        border-left: var(--iew_border);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s;
        z-index: 999;
        display: none;
    }

    .iew_nav.active {
        right: 0;
        display: block;
    }

    .iew_nav_list {
        flex-direction: column;
        width: 100%;
    }

    .iew_nav_item {
        margin: 0 0 20px;
    }

    .iew_nav_link {
        display: block;
        padding: 10px 0;
    }

    .iew_banner_title {
        font-size: 36px;
    }

    .iew_about_content,
    .iew_why_content {
        flex-direction: column;
    }

    .iew_program_grid {
        grid-template-columns: 1fr;
    }

    .iew_process_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .iew_footer_content {
        grid-template-columns: 1fr;
    }

    .iew_banner_title {
        font-size: 30px;
    }

    .iew_section_title {
        font-size: 28px;
    }
    .iew_banner{
        padding: 160px 0 100px 0;
    }
}