* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.main_site {
    flex: 1 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}html,body {
    height: 100%;
    color: #000000;
    min-height: 100%;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
}.wrapper-viewport {
    height: 100%;
    flex-direction: column;
    display: flex;
    min-height: 100%;
}.recycle_info {
    flex: 0 0 auto;
}svg {
    height: 30px;
    width: 30px;
}header,footer {
    width: 100%;
}.container {
    margin: auto;
    width: 1152px;
    max-width: 100%;
}::-webkit-scrollbar {
    width: 10px;
}::-webkit-scrollbar-track {
    border: 1px dotted rgb(122,152,150);
    border-radius: 3.9rem;
}::-webkit-scrollbar-thumb {
    background: radial-gradient(circle at top left, rgb(85,114,112,0.5) 37%, rgb(122,152,150,0.5) 7%, rgb(154,185,184) 52%);
    border: 3px solid rgb(154,185,184);
    border-radius: 5.1vw;
    min-height: 30px;
}::-webkit-scrollbar-thumb:hover {
    border-color: rgb(122,152,150,0.5);
    box-shadow: 0px 1px 13px 7px rgba(0, 0, 0, 0.5);
    background: rgb(154,185,184);
}::-webkit-scrollbar-corner {
    background: rgb(85,114,112,0.5);
    border-radius: 3px;
}

@media (max-width: 768px) {::-webkit-scrollbar {
    width: 7px;
}
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.program_information {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(154,185,184) 0%, rgba(249, 249, 249, 0.95) 100%);
    padding: 5rem 0;
}.program_information::before {
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.02) 15px,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.02) 30px
    );
    z-index: 1;
    left: 0;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}.program_information .container {
    z-index: 2;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1200px;
    position: relative;
}.program_information .knowledge_map {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    display: grid;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}.program_information .knowledge_map:hover {
    transform: perspective(1000px) rotateX(1deg);
}.program_information .image_showcase {
    transform: translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    position: relative;
    height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}.program_information .image_showcase::after {
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.3) 100%
    );
    inset: 0;
    position: absolute;
    content: '';
    z-index: 1;
}.program_information .image_showcase:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateZ(30px);
}.program_information .text_zone {
    transform: translateZ(10px);
    border-left: 4px solid rgb(122,152,150);
    position: relative;
    padding: 2.5rem;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}.program_information .text_zone::before {
    transform: rotate(45deg);
    height: 30px;
    position: absolute;
    background-color: rgb(122,152,150);
    left: 30px;
    width: 30px;
    top: -15px;
    z-index: -1;
    content: '';
}.program_information .text_zone:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateZ(15px);
}.program_information h3 {
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 1.5rem;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding-bottom: 0.75rem;
    color: #000000;
}.program_information h3::after {
    left: 0;
    content: '';
    height: 3px;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgb(122,152,150) 0%,
        rgb(85,114,112) 100%
    );
    transition: width 0.4s ease;
    width: 50px;
    position: absolute;
}.program_information .text_zone:hover h3 {
    transform: translateY(-5px);
}.program_information .text_zone:hover h3::after {
    width: 100px;
}.program_information .description {
    line-height: 1.75;
    opacity: 0;
    color: #000000;
    animation: fadeInUp 0.8s forwards 0.2s;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    font-size: 18px;
}.program_information span.description {
    display: none;
}

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

@media (min-width: 768px) {.program_information {
    padding: 7rem 0;
}.program_information .knowledge_map {
    align-items: center;
    grid-template-columns: 40% 1fr;
    gap: 3.5rem;
}.program_information .image_showcase {
    height: 450px;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}.program_information h3 {
    font-size: calc(23px * 1.2);
}.program_information .description {
    column-gap: 2.5rem;
    column-count: 2;
}
}

@media (min-width: 992px) {.program_information {
    padding: 8rem 0;
}.program_information .knowledge_map {
    grid-template-columns: 45% 1fr;
    gap: 4rem;
}.program_information .image_showcase {
    height: 550px;
}.program_information .text_zone {
    padding: 3.5rem;
}.program_information h3 {
    margin-bottom: 2rem;
    font-size: calc(23px * 1.4);
}
}

@media (max-width: 767px) {.program_information .container {
    padding: 0 15px;
}.program_information .image_showcase {
    margin-top: 1rem;
    margin-bottom: 1rem;
}.program_information .text_zone {
    padding: 1.5rem;
}.program_information h3 {
    font-size: calc(23px * 0.9);
}.program_information .description {
    font-size: calc(18px * 0.95);
}}.connect_with_us {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(154,185,184) 0%, rgb(85,114,112,0.5) 100%);
}.connect_with_us::before {
    left: 0;
    content: '';
    z-index: 1;
    opacity: 0.4;
    top: 0;
    width: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(122,152,150,0.5) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgb(85,114,112,0.5) 0%, transparent 70%);
    height: 100%;
    position: absolute;
}.connect_with_us::after {
    width: 100%;
    content: '';
    top: 0;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    background-image: 
        linear-gradient(90deg, rgb(85,114,112,0.5) 1px, transparent 1px),
        linear-gradient(0deg, rgb(85,114,112,0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}.connect_with_us .image_showcase {
    top: 0;
    position: absolute;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    width: 45%;
    z-index: 2;
    left: 0;
}.connect_with_us .image_showcase::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0.7;
    content: '';
    height: 100%;
    background: linear-gradient(135deg, rgb(122,152,150,0.5) 0%, transparent 60%);
}.connect_with_us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 3;
    position: relative;
}.connect_with_us h3 {
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-size: 32px;
    text-shadow: 0 0 15px rgb(122,152,150,0.5);
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: #ffffff;
}.connect_with_us .inquiry_map {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    overflow: hidden;
    justify-content: space-between;
    border-radius: 29px;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}.connect_with_us .inquiry_map:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}.connect_with_us .connect_support {
    overflow: hidden;
    flex: 1;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}.connect_with_us .connect_support::before {
    top: -100px;
    content: '';
    width: 200px;
    border-radius: 50%;
    background: radial-gradient(rgb(122,152,150,0.5), transparent 70%);
    position: absolute;
    height: 200px;
    opacity: 0.2;
    right: -100px;
}.connect_with_us .connect_support::after {
    width: 150px;
    border-radius: 50%;
    background: radial-gradient(rgb(85,114,112,0.5), transparent 70%);
    height: 150px;
    position: absolute;
    left: -75px;
    content: '';
    bottom: -75px;
    opacity: 0.2;
}.connect_with_us form {
    position: relative;
    z-index: 2;
}.connect_with_us form h3 {
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    text-align: left;
    background: linear-gradient(to right, #ffffff, rgb(122,152,150));
    -webkit-background-clip: text !important;
    margin-bottom: 25px;
    font-size: 18px;
}.connect_with_us input[type="text"],
.connect_with_us textarea {
    font-family: Arial, sans-serif;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
}.connect_with_us input[type="text"]:focus,
.connect_with_us textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgb(122,152,150,0.5);
    border-color: rgb(122,152,150);
    outline: none;
}.connect_with_us textarea {
    height: 120px;
    resize: none;
}.connect_with_us .request_links {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}.connect_with_us .request_links input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.connect_with_us .request_links label {
    color: #ffffff;
    font-size: 12px;
    cursor: pointer;
    padding-left: 30px;
    line-height: 1.5;
    position: relative;
}.connect_with_us .request_links label::before {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 20px;
    left: 0;
    content: '';
    height: 20px;
    border-radius: 10px;
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    top: 2px;
}.connect_with_us .request_links input[type="checkbox"]:checked + label::before {
    border-color: rgb(122,152,150);
    background: rgb(122,152,150);
}.connect_with_us .request_links input[type="checkbox"]:checked + label::after {
    top: 5px;
    content: '';
    width: 6px;
    transform: rotate(45deg);
    border: solid #ffffff;
    position: absolute;
    height: 12px;
    border-width: 0 2px 2px 0;
    left: 7px;
}.connect_with_us .request_links a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: rgb(122,152,150);
}.connect_with_us .request_links a:hover {
    text-decoration: underline;
    color: rgb(85,114,112);
}.connect_with_us .query_panel {
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    position: relative;
    cursor: pointer;
    background: linear-gradient(to right, rgb(122,152,150), rgb(85,114,112));
    border: none;
    color: #ffffff;
    width: 100%;
}.connect_with_us .query_panel::before {
    height: 100%;
    width: 100%;
    top: 0;
    transition: left 0.7s ease;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    position: absolute;
    content: '';
}.connect_with_us .query_panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(122,152,150,0.5);
}.connect_with_us .query_panel:hover::before {
    left: 100%;
}.connect_with_us .inquiry_request {
    overflow: hidden;
    width: 40%;
    padding: 40px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent);
}.connect_with_us .inquiry_request::before {
    height: 100%;
    width: 100%;
    background-image: 
        radial-gradient(circle at 70% 30%, rgb(122,152,150,0.5) 0%, transparent 60%);
    top: 0;
    content: '';
    opacity: 0.4;
    right: 0;
    position: absolute;
}.connect_with_us .inquiry_request h4 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: Arial, sans-serif;
}.connect_with_us .inquiry_request h4::after {
    content: '';
    bottom: -10px;
    left: 0;
    width: 50px;
    background: rgb(122,152,150);
    border-radius: 3px;
    height: 3px;
    position: absolute;
}.connect_with_us .query_form {
    margin: 0;
    list-style: none;
    padding: 0;
}.connect_with_us .query_form li {
    display: flex;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    align-items: flex-start;
    padding-left: 5px;
    position: relative;
}.connect_with_us .query_form li:hover {
    transform: translateX(5px);
}.connect_with_us .query_form li::before {
    left: -10px;
    width: 0;
    content: '';
    transform: translateY(-50%);
    opacity: 0;
    position: absolute;
    top: 50%;
    height: 0;
    border-radius: 50%;
    background: rgb(122,152,150);
    transition: all 0.3s ease;
}.connect_with_us .query_form li:hover::before {
    opacity: 1;
    width: 6px;
    height: 6px;
    left: -3px;
}.connect_with_us .query_form svg {
    transition: transform 0.3s ease;
    height: 24px;
    filter: drop-shadow(0 0 5px rgb(122,152,150,0.5));
    fill: rgb(122,152,150);
    width: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}.connect_with_us .query_form li:hover svg {
    transform: scale(1.1);
}.connect_with_us .query_form svg path {
    transition: fill 0.3s ease;
    fill: rgb(122,152,150);
}.connect_with_us .query_form li:hover svg path {
    fill: rgb(85,114,112);
}.connect_with_us .query_form span {
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-size: 13px;
}.connect_with_us .query_form a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #ffffff;
}.connect_with_us .query_form a:hover {
    color: rgb(122,152,150);
}

@media (max-width: 992px) {.connect_with_us {
    padding: 60px 0;
}.connect_with_us .image_showcase {
    width: 40%;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}.connect_with_us .inquiry_map {
    flex-direction: column;
}.connect_with_us .connect_support {
    border-right: none;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}.connect_with_us .inquiry_request {
    width: 100%;
}
}

@media (max-width: 768px) {.connect_with_us {
    padding: 40px 0;
}.connect_with_us .image_showcase {
    display: none;
}.connect_with_us h3 {
    margin-bottom: 30px;
    font-size: calc(32px * 0.8);
}.connect_with_us .connect_support,
    .connect_with_us .inquiry_request {
    padding: 30px;
}.connect_with_us form h3,
    .connect_with_us .inquiry_request h4 {
    font-size: calc(18px * 0.9);
}.connect_with_us input[type="text"],
    .connect_with_us textarea {
    margin-bottom: 15px;
    padding: 12px;
}.connect_with_us textarea {
    height: 100px;
}.connect_with_us .query_panel {
    padding: 12px;
}.connect_with_us .query_form li {
    margin-bottom: 20px;
}.connect_with_us .query_form svg {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}
}

@media (max-width: 576px) {.connect_with_us {
    padding: 30px 0;
}.connect_with_us h3 {
    margin-bottom: 20px;
    font-size: calc(32px * 0.7);
}.connect_with_us .connect_support,
    .connect_with_us .inquiry_request {
    padding: 20px;
}.connect_with_us .inquiry_map {
    margin: 0 10px;
}.connect_with_us .request_links label {
    font-size: calc(12px * 0.9);
}.connect_with_us .query_form li {
    margin-bottom: 15px;
}.connect_with_us .query_form span {
    font-size: calc(13px * 0.9);
}.connect_with_us::before,
    .connect_with_us::after,
    .connect_with_us .connect_support::before,
    .connect_with_us .connect_support::after,
    .connect_with_us .inquiry_request::before {
    opacity: 0.2;
}}footer {
    position: relative;
    width: 100%;
}footer .recycle_info {
    background-color: rgb(85,114,112);
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
    font-family: Arial, sans-serif;
}footer .recycle_info::before {
    left: 0;
    opacity: 0.05;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    content: "";
    top: 0;
    height: 100%;
    position: absolute;
    background-image: 
        linear-gradient(30deg, rgb(85,114,112) 12%, transparent 12.5%, transparent 87%, rgb(85,114,112) 87.5%, rgb(85,114,112)),
        linear-gradient(150deg, rgb(85,114,112) 12%, transparent 12.5%, transparent 87%, rgb(85,114,112) 87.5%, rgb(85,114,112)),
        linear-gradient(30deg, rgb(85,114,112) 12%, transparent 12.5%, transparent 87%, rgb(85,114,112) 87.5%, rgb(85,114,112)),
        linear-gradient(150deg, rgb(85,114,112) 12%, transparent 12.5%, transparent 87%, rgb(85,114,112) 87.5%, rgb(85,114,112)),
        linear-gradient(60deg, rgb(122,152,150,0.5) 25%, transparent 25.5%, transparent 75%, rgb(122,152,150,0.5) 75%, rgb(122,152,150,0.5)),
        linear-gradient(60deg, rgb(122,152,150,0.5) 25%, transparent 25.5%, transparent 75%, rgb(122,152,150,0.5) 75%, rgb(122,152,150,0.5));
    background-size: 80px 140px;
    pointer-events: none;
    width: 100%;
}footer .recycle_info::after {
    left: 0;
    pointer-events: none;
    top: 0;
    background: linear-gradient(90deg, rgb(122,152,150), rgb(85,114,112));
    width: 100%;
    position: absolute;
    content: "";
    height: 5px;
}footer .help_center {
    z-index: 1;
    position: relative;
}footer .message_section {
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
    display: flex;
    justify-content: center;
}footer .info_item {
    min-width: 200px;
    align-items: center;
    transition: all 0.4s ease;
    flex: 0 1 auto;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
    max-width: 300px;
    position: relative;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    cursor: pointer;
    display: flex;
    padding: 20px 25px;
    min-height: 60px;
}footer .info_item::before {
    position: absolute;
    content: "";
    top: 3px;
    pointer-events: none;
    right: 3px;
    left: 3px;
    z-index: -1;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    bottom: 3px;
    background-color: rgb(85,114,112);
}footer .info_item:hover {
    transform: translateY(-5px);
    background-color: rgb(122,152,150);
}footer .info_item svg {
    transition: fill 0.3s ease;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    fill: rgb(122,152,150);
    width: 20px;
}footer .info_item:hover svg {
    fill: #ffffff;
}footer .info_item p,
footer .info_item a {
    color: #ffffff;
    display: flex;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    align-items: center;
    width: 100%;
    z-index: 1;
    text-overflow: ellipsis;
    height: 100%;
}footer .text_main_holder {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    padding-top: 40px;
    gap: 50px;
}footer .text_main_holder::before {
    left: 10%;
    pointer-events: none;
    top: 0;
    width: 80%;
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    position: absolute;
}footer .nav_mainwrap {
    justify-content: center;
    position: relative;
    flex-direction: column;
    margin: 0 auto;
    display: flex;
    padding: 20px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    max-width: 350px;
    text-align: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}footer .nav_mainwrap::before {
    pointer-events: none;
    z-index: -1;
    left: 3px;
    position: absolute;
    content: "";
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    top: 3px;
    bottom: 3px;
    right: 3px;
    background-color: rgb(85,114,112);
}footer .nav_mainwrap svg {
    width: auto;
    margin-bottom: 20px;
    height: 45px;
    filter: brightness(0) invert(1);
}footer .footer_milestones {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}footer .main_lead {
    border-radius: 19px;
    padding: 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
}footer .main_lead h5 {
    padding-bottom: 10px;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    display: inline-block;
}footer .main_lead h5::after {
    position: absolute;
    background-color: rgb(122,152,150);
    bottom: 0;
    width: 50px;
    left: 0;
    height: 2px;
    content: "";
    pointer-events: none;
}footer .main_pro {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    gap: 5px;
    display: grid;
}footer .main_pro a {
    transition: all 0.3s ease;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    font-size: 16px;
}footer .main_pro a::before {
    border-left: 4px solid rgb(122,152,150);
    transform: translateY(-50%);
    top: 50%;
    border-bottom: 4px solid transparent;
    opacity: 0;
    position: absolute;
    left: 5px;
    height: 0;
    transition: all 0.3s ease;
    width: 0;
    pointer-events: none;
    content: "";
    border-top: 4px solid transparent;
}footer .main_pro a:hover {
    padding-left: 25px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}footer .main_pro a:hover::before {
    opacity: 1;
}footer .subscribe_holder {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 19px;
    padding: 30px;
}footer .subscribe_holder::before {
    background-size: 20px 20px;
    width: 100%;
    position: absolute;
    content: "";
    background-image: 
        linear-gradient(-45deg, transparent 48%, rgb(122,152,150,0.5) 49%, rgb(122,152,150,0.5) 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgb(122,152,150,0.5) 49%, rgb(122,152,150,0.5) 51%, transparent 52%);
    pointer-events: none;
    border-radius: 19px;
    left: 0;
    opacity: 0.05;
    top: 0;
    height: 100%;
}footer .subscribe_holder h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}footer .subscribe_holder p {
    margin-bottom: 25px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}footer .input_holder {
    width: 100%;
    position: relative;
    display: flex;
    z-index: 5;
    gap: 15px;
    flex-direction: column;
}footer .input_holder input[type="email"] {
    z-index: 5;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: text;
    -webkit-appearance: none;
    transition: all 0.3s ease;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    width: 100%;
    appearance: none;
    padding: 14px 16px;
    border-radius: 10px;
}footer .input_holder input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.08);
    outline: none;
    border-color: rgb(122,152,150);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}footer .sub_strategy {
    background-color: rgb(122,152,150);
    position: relative;
    width: 100%;
    border: none;
    border-radius: 10px;
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    padding: 14px 20px;
    font-weight: 600;
    color: #ffffff;
    font-size: 19px;
}footer .sub_strategy:hover {
    transform: translateY(-3px);
    background-color: rgb(85,114,112);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}footer .price_table {
    margin-top: 50px;
    text-align: center;
    position: relative;
}footer .youtube_chan {
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    font-size: 12px;
    padding: 0 20px;
    position: relative;
}footer .youtube_chan::before,
footer .youtube_chan::after {
    pointer-events: none;
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
    position: absolute;
    content: "";
}footer .youtube_chan::before {
    transform: rotate(-45deg);
    left: -10px;
}footer .youtube_chan::after {
    transform: rotate(45deg);
    right: -10px;
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .input_holder {
    flex-direction: row;
}footer .sub_strategy {
    width: auto;
    min-width: 150px;
    flex-shrink: 0;
}footer .input_holder input[type="email"] {
    flex: 1;
    min-width: 0;
}
}

@media (max-width: 991px) {footer .main_pro {
    grid-template-columns: 1fr;
}
}

@media (max-width: 767px) {footer .recycle_info {
    padding: 60px 0 30px;
}footer .message_section {
    margin-bottom: 40px;
}footer .info_item {
    min-width: 150px;
    padding: 15px 20px;
}footer .main_lead, footer .subscribe_holder {
    padding: 25px 20px;
}footer .nav_mainwrap {
    padding: 15px;
    margin-bottom: 20px;
}footer .price_table {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .recycle_info {
    padding: 50px 0 20px;
}footer .info_item {
    min-width: 100%;
}footer .main_lead h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
    font-size: calc(18px - 2px);
}footer .main_lead, footer .subscribe_holder {
    padding: 20px 15px;
}footer .input_holder input[type="email"],
    footer .sub_strategy {
    padding: 12px;
}}.cookie_alert_overlay {
    transform: translateX(-50%);
    font-family: Arial, sans-serif;
    z-index: 1050;
    position: fixed;
    bottom: 20px;
    max-width: 500px;
    overflow: hidden;
    border-radius: 12px;
    width: 90%;
    background: #ffffff;
    left: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}.cookie_compl {
    align-items: center;
    padding: 20px;
    flex-direction: column;
    display: flex;
}.privacy_opt {
    margin-bottom: 20px;
}.privacy_opt svg, .privacy_opt svg path, .privacy_opt img {
    width: 60px;
    fill: rgb(122,152,150);
    height: 60px;
}.cookie_alert_overlay h5 {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    color: rgb(122,152,150);
    font-size: 19px;
}.cookie_alert_overlay p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    color: #000000;
}.cookie_comply {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 5px;
    color: #ffffff;
    display: inline-block;
    transition: background 0.3s ease-in-out;
    text-align: center;
    width: calc(50% - 10px);
    font-size: 17px;
    border-radius: 10px;
    text-decoration: none;
    background: rgb(122,152,150);
    padding: 10px 20px;
}.cookie_comply:hover {
    background: rgb(85,114,112);
}.cookie_button.cookie_alerts {
    background: rgb(85,114,112);
}.cookie_button.cookie_alerts:hover {
    background: rgb(85,114,112,0.5);
}.cookie_alert_overlay p a {
    color: rgb(122,152,150);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}.cookie_alert_overlay p a:hover {
    color: rgb(85,114,112);
}#cookieBannerPrompt {
    display: none;
}#cookieBannerPrompt:checked ~ .cookie_alert_overlay {
    opacity: 0;
    visibility: hidden;
}.plan_option {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(154,185,184) 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
}.plan_option::before {
    height: 100%;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    background: linear-gradient(45deg, rgb(122,152,150,0.5) 0%, transparent 40%);
    z-index: 1;
    width: 100%;
}.plan_option .container {
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}.plan_option .payment_option {
    display: flex;
    flex-direction: column;
}.plan_option .discount_deals {
    max-width: 800px;
    margin-bottom: 3rem;
    margin-right: auto;
    text-align: center;
    margin-left: auto;
    order: 1;
}.plan_option .discount_deals h2 {
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
    color: #000000;
    font-size: 29px;
    font-weight: 700;
}.plan_option .discount_deals h2::after {
    bottom: -10px;
    height: 3px;
    position: absolute;
    background: rgb(122,152,150);
    transform: translateX(-50%);
    left: 50%;
    content: "";
    width: 80px;
}.plan_option .fee_pricing {
    max-width: 600px;
    margin: 0 auto;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
}.plan_option .package_deal {
    order: 2;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    display: grid;
}.plan_option .cost_options {
    border-radius: 10px;
    text-decoration: none;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    overflow: hidden;
    display: block;
    background: #ffffff;
}.plan_option .cost_options:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) scale(1.02);
}.plan_option .price_choices {
    height: 100%;
    display: flex;
    flex-direction: column;
}.plan_option .discount_plan {
    overflow-wrap: break-word;
    word-break: break-word;
    padding: 2rem;
    display: flex;
    position: relative;
    flex-direction: column;
    flex-grow: 1;
    z-index: 1;
}.plan_option .discount_plan::before {
    content: "";
    width: 100%;
    position: absolute;
    opacity: 0.7;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, #ffffff 100%);
    z-index: -1;
}.plan_option .discount_plan h3 {
    position: relative;
    padding-bottom: 0.5rem;
    font-size: calc(23px * 1.2);
    color: #000000;
    font-weight: 700;
    margin-bottom: 1.5rem;
}.plan_option .discount_plan h3::after {
    width: 40px;
    transition: width 0.3s ease;
    height: 2px;
    content: "";
    bottom: 0;
    background: rgb(85,114,112);
    left: 0;
    position: absolute;
}.plan_option .cost_options:hover .discount_plan h3::after {
    width: 80px;
}.plan_option .skill_offers {
    position: relative;
    color: rgb(122,152,150);
    font-weight: 700;
    font-size: calc(23px * 1.5);
    margin-bottom: 1.5rem;
    display: inline-block;
}.plan_option .skill_offers::before {
    position: absolute;
    content: "";
    width: 0;
    bottom: -5px;
    height: 2px;
    left: 0;
    transition: width 0.3s ease;
    background: rgb(122,152,150);
}.plan_option .cost_options:hover .skill_offers::before {
    width: 100%;
}.plan_option .discount_plan p {
    word-break: break-word;
    color: #000000;
    overflow-wrap: break-word;
    font-size: 15px;
    line-height: 1.6;
    margin-top: auto;
}.plan_option .image_showcase {
    height: 200px;
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
}.plan_option .image_showcase::after {
    top: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    content: "";
}.plan_option .cost_options:hover .image_showcase {
    transform: scale(1.05);
}.plan_option .cost_options:nth-child(odd) .price_choices {
    flex-direction: column-reverse;
}.plan_option .cost_options:nth-child(3n+1) {
    border-top: 3px solid rgb(122,152,150);
}.plan_option .cost_options:nth-child(3n+2) {
    border-top: 3px solid rgb(85,114,112);
}.plan_option .cost_options:nth-child(3n+3) {
    border-top: 3px solid #000000;
}

@media (min-width: 768px) {.plan_option .payment_option {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
}.plan_option .discount_deals {
    text-align: left;
    flex: 0 0 30%;
    order: 2;
    margin-bottom: 0;
}.plan_option .discount_deals h2 {
    text-align: left;
}.plan_option .discount_deals h2::after {
    left: 0;
    transform: none;
}.plan_option .fee_pricing {
    margin: 0;
    text-align: left;
}.plan_option .package_deal {
    grid-template-columns: repeat(2, 1fr);
    order: 1;
    flex: 0 0 65%;
}
}

@media (min-width: 992px) {.plan_option .package_deal {
    grid-template-columns: repeat(2, 1fr);
}.plan_option .cost_options:nth-child(4n+1) {
    transform: translateY(20px);
}.plan_option .cost_options:nth-child(4n+3) {
    transform: translateY(-20px);
}.plan_option .cost_options:hover {
    transform: translateY(0) scale(1.02);
}
}

@media (max-width: 767px) {.plan_option {
    padding: 4rem 0;
}.plan_option .discount_plan {
    padding: 1.5rem;
}.plan_option .discount_plan h3 {
    font-size: 23px;
}.plan_option .skill_offers {
    font-size: 23px;
}.plan_option .discount_plan p {
    overflow-y: auto;
    font-size: calc(15px * 0.9);
    max-height: 150px;
    line-height: 1.5;
}.plan_option .image_showcase {
    height: 150px;
}
}

@media (max-width: 480px) {.plan_option .package_deal {
    grid-template-columns: 1fr;
}.plan_option .discount_deals h2 {
    font-size: calc(29px * 0.8);
}.plan_option .fee_pricing {
    font-size: calc(15px * 0.9);
}.plan_option .discount_plan p {
    max-height: 120px;
}}.welcome_page {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: rgb(154,185,184);
    perspective: 1000px;
}.welcome_page .study_fast {
    width: 100%;
    min-height: 600px;
    position: relative;
    height: 100vh;
    transform-style: preserve-3d;
}.welcome_page .course_main {
    height: 100%;
    overflow: hidden;
    justify-content: center;
    z-index: 1;
    padding: 5rem 10% 5rem 5%;
    flex-direction: column;
    transform-style: preserve-3d;
    align-items: flex-start;
    position: relative;
    display: flex;
    width: 100%;
}.welcome_page .course_main::before {
    top: 0;
    backdrop-filter: blur(3px);
    width: 100%;
    z-index: -1;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.7) 40%, 
        rgba(0, 0, 0, 0.6) 60%, 
        rgba(0, 0, 0, 0.5) 100%);
    left: 0;
    height: 100%;
    content: "";
    position: absolute;
}.welcome_page .course_main::after {
    z-index: -1;
    position: absolute;
    background: linear-gradient(145deg, 
        rgb(122,152,150,0.5) 0%, 
        transparent 60%);
    height: 120%;
    right: -5%;
    top: -10%;
    width: 45%;
    transform: rotate(-15deg) translateZ(20px);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    content: "";
}.welcome_page .course_main span {
    opacity: 0;
    display: inline-block;
    margin-bottom: 1.5rem;
    max-width: 80%;
    transform: translateX(-30px) translateZ(40px);
    animation: slideInLeft 0.8s 0.2s ease-out forwards;
    position: relative;
}.welcome_page .course_main h3 {
    color: #ffffff;
    font-size: calc(24px * 0.9);
    font-weight: 400;
    background: linear-gradient(90deg, rgb(122,152,150) 0%, rgb(85,114,112) 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 1.2rem;
    transform-origin: left center;
    border-left: 4px solid #ffffff;
}.welcome_page .course_main h1 {
    transform: translateX(-30px) translateZ(30px);
    max-width: 70%;
    font-size: calc(38px * 1.2);
    font-weight: 700;
    opacity: 0;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.2;
    animation: slideInLeft 0.8s 0.4s ease-out forwards;
}.welcome_page .course_main h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    height: 5px;
    left: 0;
    background: linear-gradient(90deg, rgb(122,152,150) 0%, transparent 100%);
    width: 140px;
}.welcome_page .course_main > div {
    opacity: 0;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    transform: translateX(-30px) translateZ(20px);
    animation: slideInLeft 0.8s 0.6s ease-out forwards;
}.welcome_page .course_main > div > div {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
    border-left: 3px solid rgb(85,114,112);
    transform: skewX(-5deg);
    padding: 1.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
}.welcome_page .course_main > div > div:hover {
    transform: skewX(-5deg) translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}.welcome_page .course_main p {
    font-weight: 300;
    letter-spacing: 0.5px;
    transform: skewX(5deg);
    color: #ffffff;
    font-size: calc(16px * 1.2);
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) translateZ(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateZ(40px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 1200px) {.welcome_page .course_main {
    padding: 5rem 8% 5rem 5%;
}.welcome_page .course_main h1 {
    max-width: 80%;
    font-size: calc(38px * 1.1);
}.welcome_page .course_main span {
    max-width: 85%;
}
}

@media (max-width: 992px) {.welcome_page .study_fast {
    height: 90vh;
}.welcome_page .course_main {
    padding: 4rem 6% 4rem 4%;
}.welcome_page .course_main h1 {
    max-width: 90%;
    font-size: 38px;
}.welcome_page .course_main span {
    max-width: 90%;
}.welcome_page .course_main h3 {
    padding: 0.7rem 1rem;
    font-size: 24px;
}.welcome_page .course_main::after {
    width: 40%;
}
}

@media (max-width: 768px) {.welcome_page .study_fast {
    min-height: 500px;
    height: auto;
}.welcome_page .course_main {
    align-items: center;
    text-align: center;
    padding: 4rem 5%;
}.welcome_page .course_main span {
    max-width: 100%;
    margin-bottom: 1rem;
}.welcome_page .course_main h1 {
    text-align: center;
    font-size: calc(38px * 0.9);
    max-width: 100%;
}.welcome_page .course_main h1::after {
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
}.welcome_page .course_main > div {
    align-items: center;
}.welcome_page .course_main > div > div {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
}.welcome_page .course_main p {
    text-align: center;
    font-size: 16px;
}.welcome_page .course_main::after {
    top: -5%;
    transform: rotate(-5deg) translateZ(10px);
    width: 100%;
    height: 40%;
    right: 0;
}
}

@media (max-width: 576px) {.welcome_page .course_main {
    padding: 3rem 1.5rem;
}.welcome_page .course_main h3 {
    padding: 0.6rem 0.8rem;
    font-size: calc(24px * 0.8);
}.welcome_page .course_main h1 {
    margin-bottom: 1.5rem;
    font-size: calc(38px * 0.8);
}.welcome_page .course_main > div > div {
    padding: 1rem 1.2rem;
}.welcome_page .course_main p {
    font-size: calc(16px * 0.9);
}}.company_overview {
    padding: 120px 0;
    background: linear-gradient(145deg, rgb(154,185,184) 40%, rgba(rgb(122,152,150,0.5), 0.05) 100%);
    position: relative;
    overflow: hidden;
}.company_overview::before {
    top: -10%;
    height: 70%;
    right: -5%;
    pointer-events: none;
    z-index: 1;
    position: absolute;
    width: 40%;
    background: linear-gradient(210deg, rgb(122,152,150) 10%, rgb(85,114,112) 90%);
    transform: rotate(-15deg) skewX(15deg);
    opacity: 0.07;
    content: "";
}.company_overview::after {
    background: linear-gradient(30deg, rgb(85,114,112) 20%, rgb(122,152,150) 80%);
    content: "";
    opacity: 0.05;
    position: absolute;
    transform: rotate(15deg) skewY(-5deg);
    width: 30%;
    bottom: -5%;
    left: -5%;
    height: 60%;
    pointer-events: none;
    z-index: 1;
}.company_overview .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 2;
    padding: 0 20px;
}.company_overview h1 {
    position: relative;
    transform: translateZ(0);
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000000;
    text-align: left;
}.company_overview h1::after {
    width: 80px;
    transform-origin: left center;
    content: "";
    position: absolute;
    height: 4px;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    bottom: -15px;
    background: linear-gradient(90deg, rgb(122,152,150), rgb(85,114,112));
    left: 0;
}.company_overview h1:hover::after {
    transform: scaleX(1.5);
}.company_overview .story_info {
    position: relative;
}.company_overview .story_info ul {
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    list-style: none;
}.company_overview .guide_approach {
    padding: 40px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 2;
    border-radius: 2px;
    background: #ffffff;
}.company_overview .guide_approach::before {
    left: 0;
    transition: transform 0.3s ease-out;
    background: linear-gradient(to bottom, rgb(122,152,150), rgb(85,114,112));
    top: 0;
    height: 100%;
    width: 4px;
    position: absolute;
    content: "";
    transform-origin: top center;
}.company_overview .guide_approach:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px) translateZ(0);
}.company_overview .guide_approach:hover::before {
    transform: scaleY(1.05);
}.company_overview .guide_approach h4 {
    transition: transform 0.3s ease, color 0.3s ease;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 600;
    color: rgb(122,152,150);
    font-size: 24px;
    position: relative;
    transform: translateZ(0);
    padding-left: 15px;
}.company_overview .guide_approach:hover h4 {
    transform: translateX(5px);
    color: rgb(85,114,112);
}.company_overview .guide_approach h4::before {
    transform: translateY(-50%);
    left: 0;
    width: 6px;
    transition: background-color 0.3s ease;
    top: 50%;
    content: "";
    position: absolute;
    height: 6px;
    background-color: rgb(122,152,150);
}.company_overview .guide_approach:hover h4::before {
    background-color: rgb(85,114,112);
}.company_overview .guide_approach div {
    padding-right: 15px;
    font-size: 18px;
    color: #000000;
    position: relative;
    line-height: 1.7;
    max-height: 300px;
    opacity: 0.9;
    overflow-y: auto;
}.company_overview .guide_approach div::-webkit-scrollbar {
    width: 4px;
}.company_overview .guide_approach div::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: linear-gradient(to bottom, rgb(122,152,150), rgb(85,114,112));
}.company_overview .guide_approach div::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

@media (min-width: 768px) {.company_overview .story_info ul {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}.company_overview h1 {
    margin-bottom: 70px;
    font-size: calc(44px * 1.1);
}.company_overview .guide_approach {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), 
                    box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 45px;
}.company_overview .guide_approach div {
    max-height: 350px;
}
}

@media (min-width: 992px) {.company_overview {
    padding: 150px 0;
}.company_overview::before {
    width: 35%;
    height: 60%;
}.company_overview::after {
    height: 50%;
    width: 25%;
}.company_overview h1 {
    margin-bottom: 80px;
    font-size: calc(44px * 1.2);
}.company_overview h1::after {
    height: 5px;
    width: 100px;
}.company_overview .guide_approach {
    padding: 50px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
                    box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}.company_overview .guide_approach::before {
    width: 5px;
}.company_overview .guide_approach h4 {
    font-size: calc(24px * 1.1);
    margin-bottom: 25px;
}.company_overview .guide_approach div {
    max-height: 400px;
    font-size: calc(18px * 1.05);
    line-height: 1.8;
}
}

@media (min-width: 1200px) {.company_overview {
    padding: 180px 0;
}.company_overview .container {
    padding: 0 30px;
}.company_overview h1 {
    font-size: calc(44px * 1.3);
}.company_overview .story_info ul {
    gap: 40px;
}.company_overview .guide_approach {
    padding: 60px;
}.company_overview .guide_approach div {
    max-height: 450px;
}
}

@media (max-width: 767px) {.company_overview {
    padding: 80px 0;
}.company_overview h1 {
    text-align: center;
    font-size: calc(44px * 0.9);
    margin-bottom: 40px;
}.company_overview h1::after {
    left: 50%;
    transform: translateX(-50%);
}.company_overview h1:hover::after {
    transform: translateX(-50%) scaleX(1.2);
}.company_overview .guide_approach {
    margin-bottom: 25px;
    padding: 30px 25px;
}.company_overview .guide_approach h4 {
    font-size: calc(24px * 0.95);
    margin-bottom: 15px;
}.company_overview .guide_approach div {
    line-height: 1.6;
    max-height: 250px;
    font-size: calc(18px * 0.95);
}}.teaching_history {
    overflow: hidden;
    padding: 6rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgb(154,185,184) 0%, rgb(122,152,150,0.5) 100%);
}.teaching_history::before {
    filter: blur(20px);
    top: -5%;
    background: rgb(85,114,112,0.5);
    height: 30%;
    position: absolute;
    content: "";
    z-index: 0;
    transform: rotate(-15deg) translateZ(0);
    right: -5%;
    width: 30%;
}.teaching_history::after {
    filter: blur(15px);
    background: rgb(122,152,150,0.5);
    height: 25%;
    transform: rotate(15deg) translateZ(0);
    position: absolute;
    width: 25%;
    z-index: 0;
    content: "";
    left: -5%;
    bottom: -5%;
}.teaching_history .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}.teaching_history .edu_ratings {
    padding: 3rem;
    grid-template-columns: 1fr;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 
                0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    background: #ffffff;
    gap: 2.5rem;
    display: grid;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), 
                box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}.teaching_history .edu_ratings:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 
                0 40px 80px rgba(0, 0, 0, 0.08);
}.teaching_history .edu_ratings > div:first-child {
    position: relative;
    overflow: hidden;
}.teaching_history .image_showcase {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 300px;
    transform: scale(1.05);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}.teaching_history .edu_ratings:hover .image_showcase {
    transform: scale(1);
}.teaching_history .edu_ratings > div:nth-child(2) {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
    gap: 0.5rem;
}.teaching_history .edu_ratings > div:nth-child(2)::before {
    top: 50%;
    content: "";
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    position: absolute;
    background: linear-gradient(to bottom, rgb(122,152,150), rgb(85,114,112));
}.teaching_history .name {
    color: #000000;
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
    position: relative;
}.teaching_history .name::after {
    height: 2px;
    content: "";
    background: rgb(122,152,150);
    width: 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.4s ease-out;
}.teaching_history .edu_ratings:hover .name::after {
    width: 100%;
}.teaching_history .edu_ratings > div:nth-child(2) > div {
    color: rgb(85,114,112);
    opacity: 0.9;
    font-size: calc(12px - 2px);
    letter-spacing: 0.5px;
    font-weight: 600;
}.teaching_history .edu_ratings > div:nth-child(3) {
    position: relative;
}.teaching_history .career_container {
    font-size: 12px;
    color: #000000;
    line-height: 1.7;
    margin: 0;
    background: linear-gradient(to right, rgba(rgb(154,185,184), 0.05), rgba(rgb(154,185,184), 0.02));
    border-left: 3px solid rgb(122,152,150,0.5);
    padding: 1.5rem;
    position: relative;
}.teaching_history .career_container::before {
    top: -0.5rem;
    font-size: 5rem;
    line-height: 1;
    left: 0.5rem;
    color: rgb(122,152,150,0.5);
    content: "";
    font-family: serif;
    position: absolute;
    opacity: 0.2;
}

@media (min-width: 768px) {.teaching_history {
    padding: 8rem 3rem;
}.teaching_history .edu_ratings {
    gap: 3rem 4rem;
    padding: 4rem;
    grid-template-columns: minmax(200px, 300px) 1fr;
    grid-template-rows: auto 1fr;
}.teaching_history .edu_ratings > div:first-child {
    grid-row: span 2;
}.teaching_history .image_showcase {
    height: 100%;
}.teaching_history .edu_ratings > div:nth-child(2) {
    padding-left: 3rem;
}.teaching_history .career_container {
    font-size: calc(12px + 1px);
    padding: 2rem;
}
}

@media (min-width: 1024px) {.teaching_history {
    padding: 10rem 4rem;
}.teaching_history .edu_ratings {
    gap: 4rem 5rem;
    grid-template-columns: minmax(300px, 400px) 1fr;
    padding: 5rem;
}.teaching_history .name {
    font-size: calc(24px + 2px);
}.teaching_history .edu_ratings > div:nth-child(2) > div {
    font-size: 12px;
}.teaching_history .career_container {
    line-height: 1.8;
}.teaching_history .edu_ratings::after {
    background: linear-gradient(135deg, transparent 50%, rgb(122,152,150,0.5) 50%);
    content: "";
    transition: opacity 0.3s ease;
    position: absolute;
    opacity: 0.1;
    height: 150px;
    width: 150px;
    top: 0;
    right: 0;
}.teaching_history .edu_ratings:hover::after {
    opacity: 0.2;
}
}

@media (max-width: 767px) {.teaching_history {
    padding: 4rem 1.5rem;
}.teaching_history .edu_ratings {
    padding: 2rem;
    gap: 2rem;
}.teaching_history .image_showcase {
    height: 250px;
}.teaching_history .name {
    font-size: calc(24px - 1px);
}.teaching_history .edu_ratings > div:nth-child(2) > div {
    font-size: calc(12px - 3px);
}.teaching_history .career_container {
    padding: 1rem;
    font-size: calc(12px - 1px);
}}.ty_block_id {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(154,185,184) 0%, rgb(85,114,112,0.5) 100%);
    padding: 120px 0;
}.ty_block_id::before {
    animation: pulse 8s infinite alternate ease-in-out;
    height: 300px;
    background: radial-gradient(circle, rgb(122,152,150,0.5) 0%, transparent 70%);
    transform: rotate(-15deg);
    top: -50px;
    opacity: 0.6;
    position: absolute;
    z-index: 1;
    width: 300px;
    right: -50px;
    content: "";
}.ty_block_id::after {
    z-index: 1;
    bottom: -100px;
    width: 400px;
    opacity: 0.4;
    height: 400px;
    background: radial-gradient(ellipse, rgb(85,114,112,0.5) 0%, transparent 70%);
    content: "";
    left: -100px;
    position: absolute;
    animation: float 12s infinite alternate ease-in-out;
}.ty_block_id .container {
    max-width: 1140px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
    position: relative;
}.ty_block_id h2 {
    font-size: 28px;
    font-weight: 700;
    transform: translateY(0);
    animation: slideInTitle 1.2s ease-out;
    margin-bottom: 40px;
    color: #000000;
    opacity: 1;
    position: relative;
}.ty_block_id h2::after {
    background: linear-gradient(90deg, rgb(122,152,150) 0%, rgb(85,114,112) 100%);
    content: "";
    width: 80px;
    height: 4px;
    animation: expandWidth 1.5s ease-out forwards 0.5s;
    bottom: -15px;
    position: absolute;
    left: 0;
    transform-origin: left;
}.ty_block_id .skill_sessions {
    animation: slideInContent 1.5s ease-out 0.3s both;
    position: relative;
    transform: translateY(0);
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}.ty_block_id .skill_sessions::before {
    width: 100%;
    position: absolute;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgb(255, 255, 255, 0.5) 100%);
    z-index: -1;
    top: 0;
    content: "";
}.ty_block_id ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.ty_block_id li {
    position: relative;
    animation: fadeIn 1.8s ease-out 0.6s both;
    margin-bottom: 15px;
    padding-left: 25px;
}.ty_block_id li::before {
    height: 8px;
    background: rgb(122,152,150);
    transform: rotate(45deg);
    animation: rotateMark 6s infinite alternate ease-in-out;
    content: "";
    top: 10px;
    left: 0;
    width: 8px;
    position: absolute;
}.ty_block_id li span {
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.8;
    display: block;
    font-size: 13px;
}

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

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

@keyframes expandWidth {
  from {
    transform: scaleX(0.3);
  }
  to {
    transform: scaleX(1);
  }
}

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

@keyframes rotateMark {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(135deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1) rotate(-15deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1) rotate(-15deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(-15deg);
    opacity: 0.6;
  }
}

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

@media (max-width: 992px) {.ty_block_id {
    padding: 80px 0;
}.ty_block_id h2 {
    font-size: calc(28px * 0.9);
}.ty_block_id .skill_sessions {
    padding: 30px;
}
}

@media (max-width: 768px) {.ty_block_id {
    padding: 60px 0;
}.ty_block_id h2 {
    font-size: calc(28px * 0.8);
    margin-bottom: 30px;
}.ty_block_id h2::after {
    width: 60px;
}.ty_block_id .skill_sessions {
    padding: 25px;
}.ty_block_id::before {
    width: 200px;
    height: 200px;
}.ty_block_id::after {
    height: 250px;
    width: 250px;
}
}

@media (max-width: 576px) {.ty_block_id {
    padding: 40px 0;
}.ty_block_id h2 {
    margin-bottom: 25px;
    font-size: calc(28px * 0.7);
}.ty_block_id h2::after {
    width: 50px;
    height: 3px;
}.ty_block_id .skill_sessions {
    padding: 20px;
}.ty_block_id li {
    padding-left: 20px;
}.ty_block_id li span {
    line-height: 1.6;
    font-size: calc(13px * 0.95);
}
}

@media (prefers-reduced-motion: reduce) {.ty_block_id, .ty_block_id::before, .ty_block_id::after, 
  .ty_block_id h2, .ty_block_id h2::after, 
  .ty_block_id .skill_sessions, .ty_block_id li, .ty_block_id li::before {
    animation: none;
    transition: none;
}
}

@supports (container-type: inline-size) {.ty_block_id .container {
    container-name: thanks-container;
    container-type: inline-size;
}
  
  @container thanks-container (max-width: 768px) {.ty_block_id .skill_sessions {
    padding: 20px;
}.ty_block_id h2 {
    margin-bottom: 25px;
}}
}header {
    background: linear-gradient(135deg, rgb(154,185,184), #ffffff);
    position: relative;
    width: 100%;
    overflow: visible;
    z-index: 99;
}header::before {
    background-size: 20px 20px;
    opacity: 0.3;
    left: 0;
    height: 15px;
    position: absolute;
    width: 100%;
    bottom: 0;
    background: 
        radial-gradient(
            circle at 0% 50%,
            transparent 6px,
            rgb(122,152,150,0.5) 6px,
            rgb(122,152,150,0.5) 10px,
            transparent 10px
        ) repeat-x;
    content: "";
}header .main_pagewrap {
    padding: 25px 30px;
    position: relative;
    justify-content: space-between;
    align-items: center;
    display: flex;
}header .main_pagewrap::before,
header .main_pagewrap::after {
    position: absolute;
    background: linear-gradient(to right, rgb(122,152,150), transparent);
    width: 30%;
    content: "";
    height: 2px;
}header .main_pagewrap::before {
    top: 10px;
    left: 0;
}header .main_pagewrap::after {
    background: linear-gradient(to left, rgb(85,114,112), transparent);
    bottom: 10px;
    right: 0;
}header .main_pagewrap .nav_mainwrap {
    position: relative;
    z-index: 2;
}header .main_pagewrap .nav_mainwrap::before {
    left: -20%;
    content: "";
    width: 140%;
    top: -20%;
    transition: transform 0.5s ease-in-out;
    position: absolute;
    z-index: -1;
    background: rgb(122,152,150,0.5);
    opacity: 0.05;
    border-radius: 60% 40% 50% 30% / 40% 50% 60% 50%;
    height: 140%;
}header .main_pagewrap .nav_mainwrap:hover::before {
    transform: rotate(15deg) scale(1.1);
}header .main_pagewrap .nav_mainwrap .top_study {
    display: block;
    transition: transform 0.3s ease;
}header .main_pagewrap .nav_mainwrap:hover .top_study {
    transform: translateY(-3px);
}header .main_pagewrap .nav_mainwrap .top_study svg {
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
    width: auto;
    height: 45px;
}header .main_pagewrap .main_lead {
    position: relative;
    padding: 0;
    list-style: none;
    display: flex;
    margin: 0;
}header .main_pagewrap .main_lead::before {
    opacity: 0.05;
    transition: all 0.5s ease;
    height: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    background: rgb(85,114,112,0.5);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    width: 100%;
    left: 0;
    top: 0;
}header .main_pagewrap .main_lead:hover::before {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.08;
}header .main_pagewrap .main_lead .header_master {
    position: relative;
    margin: 0 8px;
}header .main_pagewrap .main_lead .header_master a {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    font-size: 13px;
    padding: 10px 15px;
    position: relative;
    display: block;
    transition: all 0.4s ease;
    font-weight: 600;
    text-decoration: none;
    font-family: Arial, sans-serif;
    color: #000000;
}header .main_pagewrap .main_lead .header_master a:hover {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    color: #ffffff;
}header .main_pagewrap .main_lead .header_master a::before {
    transform-origin: right top;
    left: 0;
    position: absolute;
    transition: transform 0.4s ease, border-radius 0.4s ease;
    z-index: -1;
    border-radius: 0% 0% 0% 0% / 0% 0% 0% 0%;
    width: 100%;
    height: 100%;
    background: rgb(122,152,150);
    content: "";
    transform: scale(0);
    top: 0;
}header .main_pagewrap .main_lead .header_master a:hover::before {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: scale(1);
}header .main_pagewrap .main_lead .header_master:nth-child(2n) a::before {
    transform-origin: left bottom;
    background: rgb(85,114,112);
}header .main_pagewrap .main_lead .header_master:nth-child(2n) a:hover::before {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}header .main_pagewrap .main_lead .header_master:hover {
    animation: menu-wobble 1s ease;
}

@keyframes menu-wobble {
    0%, 100% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-3px) rotate(-1deg);
    }
    30% {
        transform: translateX(2px) rotate(1deg);
    }
    45% {
        transform: translateX(-2px) rotate(-0.5deg);
    }
    60% {
        transform: translateX(1px) rotate(0.5deg);
    }
    75% {
        transform: translateX(-1px) rotate(-0.25deg);
    }
}

@media (max-width: 992px) {header .main_pagewrap {
    flex-direction: column;
    padding: 20px 15px;
}header .main_pagewrap .nav_mainwrap {
    margin-bottom: 15px;
}header .main_pagewrap .main_lead {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}header .main_pagewrap .main_lead .header_master {
    margin: 5px;
}header .main_pagewrap .main_lead .header_master a {
    padding: 8px 12px;
    font-size: calc(13px - 1px);
}
}

@media (max-width: 767px) {header .main_pagewrap {
    padding: 15px 10px;
}header .main_pagewrap .nav_mainwrap .top_study svg {
    height: 40px;
}header .main_pagewrap .main_lead .header_master a {
    padding: 6px 10px;
    font-size: calc(13px - 2px);
}}.register_now {
    overflow: hidden;
    position: relative;
    background: rgb(154,185,184);
    padding: 150px 0;
}.register_now::before {
    position: absolute;
    z-index: 1;
    top: 0;
    content: '';
    left: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgb(154,185,184) 80%);
    width: 100%;
    height: 100%;
}.register_now .skill_sessions {
    padding: 0;
    z-index: 10;
    position: relative;
    perspective: 1000px;
}.register_now .container {
    perspective: 1000px;
    transform-style: preserve-3d;
}.register_now .container p {
    border-radius: 10px;
    max-width: 800px;
    z-index: 5;
    background: #ffffff;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    padding: 50px;
    transform: translateZ(50px);
    margin: 0 auto 80px;
    font-size: 37px;
    line-height: 1.4;
    color: #000000;
    font-weight: 700;
    position: relative;
    text-align: center;
}.register_now .container p::before {
    border-radius: 10px;
    content: '';
    position: absolute;
    left: 2.5%;
    filter: blur(20px);
    width: 95%;
    background: rgb(122,152,150,0.5);
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    top: 15px;
}.register_now .query_panel {
    font-weight: 600;
    border-radius: 30px;
    z-index: 5;
    line-height: 60px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    background: rgb(122,152,150);
    text-align: center;
    height: 60px;
    font-size: 20px;
    margin: 0 auto;
    text-decoration: none;
    transform: translateZ(30px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    width: 250px;
    color: #ffffff;
}.register_now .query_panel::before {
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    left: 0;
    width: 100%;
    position: absolute;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    top: 0;
    content: '';
    height: 100%;
}.register_now .query_panel:hover {
    transform: translateZ(40px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}.register_now .query_panel:hover::before {
    transform: translateX(100%);
}.register_now .container p::after {
    height: 30px;
    z-index: -1;
    background: rgb(122,152,150);
    width: 30px;
    left: 50%;
    content: '';
    position: absolute;
    bottom: -15px;
    transform: translateX(-50%) rotate(45deg);
}.register_now::after {
    background: 
        radial-gradient(circle at 20% 20%, rgb(122,152,150,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgb(85,114,112,0.5) 0%, transparent 40%);
    top: 0;
    z-index: 1;
    content: '';
    width: 100%;
    left: 0;
    opacity: 0.1;
    height: 100%;
    position: absolute;
}.register_now .skill_sessions::after {
    position: absolute;
    height: 20px;
    left: 5%;
    content: '';
    width: 90%;
    bottom: -30px;
    filter: blur(15px);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transform: rotateX(70deg);
    opacity: 0.1;
    z-index: -1;
}

@media (max-width: 991px) {.register_now {
    padding: 120px 0;
}.register_now .container p {
    padding: 40px;
    font-size: calc(18px * 1.2);
    margin-bottom: 70px;
}.register_now .query_panel {
    width: 220px;
    line-height: 55px;
    height: 55px;
}
}

@media (max-width: 767px) {.register_now {
    padding: 100px 0;
}.register_now .container p {
    padding: 30px;
    margin-bottom: 60px;
    transform: translateZ(30px);
    font-size: 18px;
}.register_now .query_panel {
    line-height: 50px;
    height: 50px;
    transform: translateZ(20px);
    width: 200px;
}.register_now .query_panel:hover {
    transform: translateZ(25px);
}.register_now .container p::after {
    height: 25px;
    width: 25px;
    bottom: -12px;
}
}

@media (max-width: 480px) {.register_now {
    padding: 80px 0;
}.register_now .container p {
    transform: translateZ(20px);
    margin-bottom: 50px;
    font-size: calc(17px * 1.2);
    padding: 25px;
}.register_now .query_panel {
    height: 45px;
    width: 180px;
    font-size: calc(20px * 0.9);
    transform: translateZ(15px);
    line-height: 45px;
}.register_now .query_panel:hover {
    transform: translateZ(18px);
}.register_now .container p::before {
    top: 10px;
}.register_now .container p::after {
    height: 20px;
    bottom: -10px;
    width: 20px;
}}.privacy_parapet {
    background: linear-gradient(135deg, rgb(154,185,184) 0%, rgba(255,255,255,0.96) 100%);
    overflow: hidden;
    position: relative;
    padding: 5rem 2rem;
}.privacy_parapet::before {
    background: 
        radial-gradient(circle at 100% 0%, rgb(122,152,150,0.5) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgb(85,114,112,0.5) 0%, transparent 50%);
    top: 0;
    width: 100%;
    opacity: 0.15;
    position: absolute;
    z-index: 0;
    left: 0;
    content: "";
    height: 100%;
}.privacy_parapet .container {
    box-shadow: 0 20px 50px rgba(0,0,0,0.07);
    padding: 3rem;
    border-left: 4px solid rgb(122,152,150);
    z-index: 1;
    margin: 0 auto;
    background: linear-gradient(to right, rgba(255,255,255,0.97), rgba(255,255,255,0.99));
    transform: translateZ(0);
    max-width: 1140px;
    position: relative;
}.privacy_parapet h1 {
    transition: transform 0.5s ease-out;
    padding-bottom: 1rem;
    transform: translateX(0);
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 46px;
    position: relative;
    color: #000000;
}.privacy_parapet h1::after {
    background: linear-gradient(to right, rgb(122,152,150), rgb(85,114,112));
    content: "";
    transition: width 0.5s ease-out;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 80px;
    height: 3px;
}.privacy_parapet h1:hover {
    transform: translateX(5px);
}.privacy_parapet h1:hover::after {
    width: 120px;
}.privacy_parapet h2 {
    border-left: 3px solid rgb(85,114,112);
    padding-left: 1rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    position: relative;
    font-size: 32px;
    color: #000000;
}.privacy_parapet h3 {
    border-left: 2px solid rgb(85,114,112,0.5);
    padding-left: 1rem;
    position: relative;
    margin: 2rem 0 1rem;
    font-size: calc(32px * 0.8);
    color: #000000;
    font-weight: 600;
}.privacy_parapet h4 {
    font-size: calc(32px * 0.7);
    color: #000000;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    border-left: 1px solid rgb(85,114,112,0.5);
    padding-left: 0.75rem;
    position: relative;
}.privacy_parapet p {
    position: relative;
    transition: transform 0.4s ease;
    font-family: Arial, sans-serif;
    font-size: 18px;
    margin-bottom: 1.5rem;
    color: #000000;
    padding-right: 1rem;
    line-height: 1.7;
}.privacy_parapet p:hover {
    transform: translateX(5px);
}.privacy_parapet strong {
    color: rgb(122,152,150);
    position: relative;
    font-weight: 700;
}.privacy_parapet strong::after {
    content: "";
    height: 1px;
    transition: width 0.3s ease;
    position: absolute;
    width: 0;
    bottom: -2px;
    background: rgb(122,152,150);
    left: 0;
}.privacy_parapet p:hover strong::after {
    width: 100%;
}.privacy_parapet ul {
    margin: 1.5rem 0 2rem 1rem;
    padding-left: 0;
}.privacy_parapet li {
    line-height: 1.6;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease;
    padding-left: 1.5rem;
    font-size: 18px;
    position: relative;
    list-style-type: none;
    margin-bottom: 1rem;
    color: #000000;
}.privacy_parapet li::before {
    height: 8px;
    background: linear-gradient(135deg, rgb(122,152,150), rgb(85,114,112));
    top: 0.6rem;
    width: 8px;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    content: "";
    transition: transform 0.3s ease;
}.privacy_parapet li:hover {
    transform: translateX(8px);
}.privacy_parapet li:hover::before {
    transform: rotate(225deg);
}.privacy_parapet span {
    margin-bottom: 1.5rem;
    border-left: 2px solid rgb(85,114,112,0.5);
    transition: transform 0.3s ease-out, background 0.3s ease;
    font-size: calc(18px * 0.95);
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 0.75rem 1rem;
    line-height: 1.7;
    display: block;
    background: linear-gradient(to right, rgba(rgb(154,185,184), 0.3), transparent);
    transform: perspective(1000px) rotateX(0);
}.privacy_parapet span:hover {
    transform: perspective(1000px) rotateX(1deg);
    background: linear-gradient(to right, rgba(rgb(154,185,184), 0.5), transparent);
}

@media (max-width: 991px) {.privacy_parapet {
    padding: 4rem 1.5rem;
}.privacy_parapet .container {
    padding: 2.5rem 2rem;
}.privacy_parapet h1 {
    font-size: calc(46px * 0.9);
}.privacy_parapet h2 {
    font-size: calc(32px * 0.9);
}
}

@media (max-width: 767px) {.privacy_parapet {
    padding: 3rem 1rem;
}.privacy_parapet .container {
    border-left-width: 3px;
    padding: 2rem 1.5rem;
}.privacy_parapet h1 {
    font-size: calc(46px * 0.8);
    margin-bottom: 1.5rem;
}.privacy_parapet h2 {
    margin: 2rem 0 1rem;
    font-size: calc(32px * 0.8);
}.privacy_parapet h3 {
    font-size: calc(32px * 0.7);
}.privacy_parapet h4 {
    font-size: calc(32px * 0.6);
}.privacy_parapet ul {
    margin-left: 0.5rem;
}.privacy_parapet li {
    padding-left: 1.25rem;
}.privacy_parapet p, .privacy_parapet span, .privacy_parapet li {
    font-size: calc(18px * 0.95);
}
}

@media (max-width: 480px) {.privacy_parapet {
    padding: 2rem 0.75rem;
}.privacy_parapet .container {
    padding: 1.5rem 1rem;
}.privacy_parapet h1 {
    font-size: calc(46px * 0.7);
}.privacy_parapet h2 {
    font-size: calc(32px * 0.7);
    padding-left: 0.75rem;
}.privacy_parapet h3, .privacy_parapet h4 {
    padding-left: 0.5rem;
}.privacy_parapet p, .privacy_parapet span, .privacy_parapet li {
    font-size: calc(18px * 0.9);
    line-height: 1.6;
}.privacy_parapet li {
    padding-left: 1rem;
}.privacy_parapet li::before {
    width: 6px;
    height: 6px;
}
}