* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}.head-primary {
    flex: 1 0 auto;
}.framework-wrap {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}html,body {
    font-family: Arial, sans-serif;
    color: #000000;
    height: 100%;
    min-height: 100%;
}a {
    color: inherit;
    text-decoration: none;
}svg {
    width: 30px;
    height: 30px;
}.hackathon {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1219px;
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course-demographic {
    background-color: rgb(201,231,219);
    position: relative;
    padding: 100px 20px;
    z-index: 1;
    overflow: hidden;
}.course-demographic::before {
    left: -50%;
    animation: slowRotate 35s linear infinite;
    top: -50%;
    opacity: 0.6;
    content: "";
    width: 200%;
    height: 200%;
    z-index: -1;
    background: radial-gradient(
    circle at 30% 30%,
    rgb(106,174,157,0.5) 0%,
    transparent 50%
  ), radial-gradient(
    circle at 70% 70%,
    rgb(154,202,186,0.5) 0%,
    transparent 45%
  );
    position: absolute;
}.course-demographic .study-guides {
    box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    z-index: 2;
    max-width: 900px;
    padding: 50px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 29px;
    position: relative;
    margin: 0 auto;
}.course-demographic h3 {
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    font-weight: 600;
    color: #000000;
    font-size: 28px;
}.course-demographic h3::after {
    height: 3px;
    position: absolute;
    background: linear-gradient(90deg, 
    rgb(154,202,186,0.5), 
    rgb(106,174,157), 
    rgb(154,202,186,0.5)
  );
    bottom: -15px;
    border-radius: 10px;
    transform: translateX(-50%);
    content: "";
    width: 60px;
    left: 50%;
}.course-demographic ul {
    list-style: none;
    display: flex;
    margin: 0;
    flex-direction: column;
    padding: 0;
    gap: 25px;
}.course-demographic ul li {
    box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    align-items: center;
    flex-direction: column;
    border-radius: 29px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 25px;
    transition: all 0.4s ease;
    display: flex;
    position: relative;
}.course-demographic ul li::before {
    -webkit-mask-composite: xor;
    opacity: 0.4;
    inset: 0;
    padding: 2px;
    position: absolute;
    -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
    background: linear-gradient(
    45deg,
    transparent,
    rgb(106,174,157,0.5),
    rgb(154,202,186,0.5),
    transparent
  );
    content: "";
    border-radius: 29px;
    mask-composite: exclude;
    transition: opacity 0.4s ease;
}.course-demographic ul li:hover {
    box-shadow: 
    0 15px 25px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transform: translateY(-5px);
}.course-demographic ul li:hover::before {
    opacity: 1;
}.course-demographic ul li svg {
    margin-bottom: 15px;
    height: 45px;
    transition: all 0.3s ease;
    width: 45px;
    fill: rgb(106,174,157);
}.course-demographic ul li:hover svg {
    transform: scale(1.05);
    fill: rgb(154,202,186);
}.course-demographic ul li svg path {
    fill: rgb(106,174,157);
    transition: all 0.3s ease;
}.course-demographic ul li:hover svg path {
    fill: rgb(154,202,186);
}.course-demographic ul li {
    font-weight: 300;
    line-height: 1.6;
    font-size: 16px;
    color: #000000;
}.course-demographic ul li::after {
    top: 0;
    content: "";
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    position: absolute;
    border-radius: 29px;
    right: 0;
    left: 0;
    background: radial-gradient(
    circle at var(--x, center) var(--y, center),
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
    bottom: 0;
}.course-demographic ul li:hover::after {
    opacity: 1;
}

@keyframes slowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 992px) {.course-demographic {
    padding: 70px 15px;
}.course-demographic .study-guides {
    padding: 40px 30px;
}.course-demographic h3 {
    margin-bottom: 40px;
    font-size: calc(28px * 0.9);
}.course-demographic ul {
    gap: 20px;
}
}

@media screen and (max-width: 768px) {.course-demographic {
    padding: 50px 15px;
}.course-demographic .study-guides {
    backdrop-filter: blur(8px);
    padding: 30px 20px;
}.course-demographic h3 {
    font-size: calc(28px * 0.8);
    margin-bottom: 35px;
}.course-demographic ul {
    gap: 15px;
}.course-demographic ul li {
    padding: 20px 15px;
}.course-demographic ul li svg {
    margin-bottom: 12px;
    height: 35px;
    width: 35px;
}.course-demographic::before {
    animation-duration: 60s;
}.course-demographic ul li::before {
    padding: 1px;
}}

.course-demographic ul li {
    --y: center;
    --x: center;
}

@media (hover: hover) {.course-demographic ul li:hover {
    --y: calc(100%);
    --x: calc(1100%);
}
}

@media screen and (min-width: 1200px) {.course-demographic ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}}.hackathon {
    color: #ffffff;
    position: relative;
    padding: 80px 0 40px;
    z-index: 1;
}.hackathon::before {
    content: "";
    z-index: -1;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(8px);
    position: absolute;
}footer {
    position: relative;
}.hackathon .container {
    gap: 40px;
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1fr;
}.hackathon .company_holder {
    position: relative;
    padding-right: 40px;
}.hackathon .company_holder::after {
    height: 60%;
    width: 1px;
    right: 0;
    position: absolute;
    content: "";
    top: 20%;
    background: linear-gradient(to bottom, 
        transparent, 
        rgb(106,174,157,0.5), 
        transparent);
}.hackathon .company_holder h3 {
    font-weight: 700;
    font-size: calc(32px * 0.9);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}.hackathon .company_holder h3::after {
    bottom: -8px;
    position: absolute;
    border-radius: 10px;
    content: "";
    width: 40px;
    background: rgb(154,202,186);
    left: 0;
    height: 3px;
}.hackathon .code-labs {
    line-height: 1.6;
    color: #ffffff;
    max-width: 90%;
    margin-bottom: 30px;
    opacity: 0.8;
    font-size: 17px;
}.hackathon .access-help {
    justify-content: flex-end;
    display: flex;
}.hackathon .nav-pagebar {
    display: flex;
    gap: 60px;
}.hackathon .main-core {
    position: relative;
}.hackathon .main-core h5 {
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 12px;
    position: relative;
    font-size: 23px;
}.hackathon .main-core h5::after {
    height: 2px;
    border-radius: 10px;
    left: 0;
    bottom: 0;
    width: 30px;
    background: rgb(154,202,186);
    position: absolute;
    content: "";
}.hackathon .main-core .nav-pagebar {
    flex-direction: column;
    gap: 15px;
    display: flex;
}.hackathon .main-core .nav-pagebar a {
    font-size: calc(17px * 0.95);
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0.7;
    padding-left: 0;
    color: #ffffff;
    position: relative;
}.hackathon .main-core .nav-pagebar a::before {
    left: 0;
    top: 50%;
    background: rgb(154,202,186);
    transition: all 0.3s ease;
    transform: translateY(-50%);
    position: absolute;
    content: "";
    opacity: 0;
    height: 1px;
    width: 0;
}.hackathon .main-core .nav-pagebar a:hover {
    color: rgb(154,202,186);
    padding-left: 12px;
    opacity: 1;
}.hackathon .main-core .nav-pagebar a:hover::before {
    opacity: 1;
    width: 8px;
}.subscr-info {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}.subscr-info .container {
    display: flex;
    justify-content: center;
    align-items: center;
}.subscr-info .press-room {
    opacity: 0.6;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgb(154,202,186,0.5);
    }
    50% {
        box-shadow: 0 0 15px rgb(154,202,186);
    }
}

@media (max-width: 991px) {.hackathon {
    padding: 60px 0 30px;
}.hackathon .container {
    grid-template-columns: 1fr;
    gap: 50px;
}.hackathon .company_holder {
    padding-right: 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}.hackathon .company_holder::after {
    display: none;
}.hackathon .company_holder h3 {
    margin-left: auto;
    margin-right: auto;
}.hackathon .company_holder h3::after {
    width: 60px;
    transform: translateX(-50%);
    left: 50%;
}.hackathon .code-labs {
    max-width: 100%;
    text-align: center;
}.hackathon .access-help {
    justify-content: center;
}
}

@media (max-width: 767px) {.hackathon {
    padding: 50px 0 20px;
}.hackathon .nav-pagebar {
    width: 100%;
    gap: 40px;
    flex-direction: column;
}.hackathon .main-core {
    text-align: center;
}.hackathon .main-core h5 {
    text-align: center;
}.hackathon .main-core h5::after {
    transform: translateX(-50%);
    left: 50%;
}.hackathon .main-core .nav-pagebar {
    align-items: center;
}.hackathon .main-core .nav-pagebar a {
    text-align: center;
}.hackathon .main-core .nav-pagebar a::before {
    display: none;
}.hackathon .main-core .nav-pagebar a:hover {
    padding-left: 0;
}
}

@media (max-width: 480px) {.hackathon {
    padding: 40px 0 20px;
}.hackathon .company_holder h3 {
    font-size: calc(32px * 0.8);
}.hackathon .code-labs {
    font-size: calc(17px * 0.9);
}.subscr-info .press-room {
    font-size: calc(13px * 0.9);
}}

.hackathon::before {
    background-image: radial-gradient(
        circle at 20% 80%, 
        #000000 0%, 
        rgba(0, 0, 0, 0.5) 70%
    );
}.hackathon::after {
    box-shadow: 0 0 40px rgb(154,202,186,0.5);
}.hackathon .container::before {
    bottom: -75px;
    width: 150px;
    content: "";
    filter: blur(30px);
    animation: pulse 10s infinite alternate-reverse;
    background: radial-gradient(
        circle, 
        rgb(106,174,157,0.5), 
        transparent 70%
    );
    position: absolute;
    height: 150px;
    left: -75px;
    border-radius: 50%;
}.hackathon .main-core::before {
    top: 10px;
    opacity: 0.7;
    content: "";
    left: -15px;
    border-radius: 50%;
    width: 5px;
    position: absolute;
    height: 5px;
    background: rgb(154,202,186);
}.hackathon .main-core:hover::before {
    animation: glow 2s infinite;
}.hackathon .company_holder::before {
    position: absolute;
    background: linear-gradient(90deg, 
        rgb(154,202,186,0.5), 
        transparent);
    content: "";
    width: 100px;
    bottom: -20px;
    height: 1px;
    left: 0;
}

@media (max-width: 991px) {.hackathon .company_holder::before {
    transform: translateX(-50%);
    left: 50%;
    background: linear-gradient(90deg, 
            transparent, 
            rgb(154,202,186,0.5), 
            transparent);
}}

.hackathon .main-core .nav-pagebar a::after {
    width: 0;
    position: absolute;
    left: 0;
    height: 1px;
    background: rgb(154,202,186);
    bottom: -2px;
    transition: width 0.3s ease;
    content: "";
}.hackathon .main-core .nav-pagebar a:hover::after {
    width: 100%;
}.hackathon .main-core .nav-pagebar a:nth-child(odd):hover {
    transform: translateX(2px);
}.hackathon .main-core .nav-pagebar a:nth-child(even):hover {
    transform: translateX(2px);
}

@media (min-width: 992px) {footer::after {
    left: 0;
    height: 1px;
    position: absolute;
    background: linear-gradient(90deg, 
            transparent, 
            rgb(106,174,157,0.5), 
            transparent);
    content: "";
    right: 0;
    top: 0;
}.hackathon::before {
    background-blend-mode: overlay;
}}

.hackathon .company_holder h3::before {
    opacity: 0.7;
    width: 20px;
    content: "";
    background: rgb(154,202,186);
    left: -30px;
    height: 1px;
    position: absolute;
    top: 50%;
}

@media (max-width: 991px) {.hackathon .company_holder h3::before {
    display: none;
}}

.subscr-info {
    overflow: hidden;
    position: relative;
}.subscr-info::before {
    content: "";
    background: linear-gradient(90deg, 
        transparent, 
        rgb(106,174,157,0.5), 
        transparent);
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 1px;
}.subscr-info::after {
    left: 35%;
    opacity: 0.3;
    width: 30%;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(106,174,157,0.5), 
        transparent);
    position: absolute;
    content: "";
    height: 1px;
}.subscr-info .press-room {
    transition: all 0.3s ease;
    position: relative;
}.subscr-info .press-room:hover {
    opacity: 1;
    letter-spacing: 0.7px;
}.education-history {
    position: relative;
    background-color: rgb(201,231,219);
    overflow: hidden;
    padding: 6rem 0;
}.education-history::before {
    opacity: 0.15;
    content: "";
    position: absolute;
    top: -5%;
    height: 70%;
    background: linear-gradient(135deg, rgb(154,202,186,0.5), rgb(106,174,157,0.5));
    width: 45%;
    right: -10%;
    transform: rotate(-15deg) skewX(15deg);
    z-index: 1;
    filter: blur(25px);
}.education-history::after {
    opacity: 0.1;
    position: absolute;
    width: 35%;
    content: "";
    filter: blur(20px);
    transform: rotate(10deg) skewX(-10deg);
    left: -5%;
    background: linear-gradient(225deg, rgb(106,174,157,0.5), rgb(154,202,186,0.5));
    height: 60%;
    bottom: -10%;
    z-index: 1;
}.education-history .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}.education-history .feedback-cloud {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    position: relative;
    display: grid;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
    padding: 3rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    transform: perspective(1000px) rotateY(1deg) rotateX(1deg);
    backdrop-filter: blur(10px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}.education-history .feedback-cloud:hover {
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.12);
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
}.education-history .feedback-cloud > div:first-child {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}.education-history .feedback-cloud .img-stack {
    padding-bottom: 100%;
    box-shadow: 
        0 10px 30px -10px rgba(0,0,0,0.15),
        0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    position: relative;
    transform: translateZ(20px);
}.education-history .feedback-cloud .img-stack::before {
    content: "";
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 65%,
        rgb(106,174,157,0.5) 100%
    );
    top: 0;
    left: 0;
}.education-history .feedback-cloud .img-stack::after {
    top: 0;
    z-index: 1;
    background: linear-gradient(
        45deg,
        rgb(154,202,186,0.5) 0%,
        transparent 50%
    );
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.4;
    left: 0;
    position: absolute;
}.education-history .feedback-cloud:hover .img-stack {
    transform: translateZ(30px) scale(1.02);
    box-shadow: 
        0 15px 35px -10px rgba(0,0,0,0.2),
        0 1px 5px rgba(0,0,0,0.1);
}.education-history .feedback-cloud > div:nth-child(2) {
    text-align: center;
    position: relative;
}.education-history .feedback-cloud .name {
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: calc(22px * 1.1);
    color: #000000;
}.education-history .feedback-cloud .name::after {
    height: 3px;
    background: linear-gradient(90deg, rgb(106,174,157), rgb(154,202,186));
    content: "";
    transform: translateX(-50%);
    width: 35%;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    bottom: -5px;
}.education-history .feedback-cloud > div:nth-child(2) > div {
    letter-spacing: 0.5px;
    margin-top: 0.8rem;
    color: rgb(106,174,157);
    font-weight: 600;
    font-size: calc(15px * 0.95);
}.education-history .feedback-cloud > div:nth-child(3) {
    position: relative;
}.education-history .feedback-cloud .employee-history {
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    color: #000000;
    margin: 0;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    border-left: 3px solid rgb(154,202,186,0.5);
}.education-history .feedback-cloud .employee-history::before {
    font-size: 5rem;
    top: -20px;
    z-index: -1;
    font-family: serif;
    position: absolute;
    color: rgb(154,202,186,0.5);
    left: -10px;
    opacity: 0.2;
    content: "";
}

@media (min-width: 768px) {.education-history .feedback-cloud {
    grid-template-columns: 280px 1fr;
    grid-template-areas: 
            "photo info"
            "photo quote";
    grid-template-rows: auto 1fr;
    gap: 2rem 3.5rem;
    padding: 3.5rem;
}.education-history .feedback-cloud > div:first-child {
    margin: 0;
    grid-area: photo;
}.education-history .feedback-cloud > div:nth-child(2) {
    text-align: left;
    grid-area: info;
    align-self: flex-end;
}.education-history .feedback-cloud > div:nth-child(3) {
    align-self: flex-start;
    grid-area: quote;
}.education-history .feedback-cloud .name::after {
    transform: none;
    width: 50px;
    left: 0;
}.education-history .feedback-cloud .img-stack {
    border-radius: 8px;
}
}

@media (min-width: 992px) {.education-history {
    padding: 8rem 0;
}.education-history .feedback-cloud {
    grid-template-columns: 320px 1fr;
    padding: 4rem;
    gap: 2.5rem 4rem;
}.education-history .feedback-cloud .name {
    font-size: calc(22px * 1.2);
}.education-history .feedback-cloud > div:nth-child(2) > div {
    font-size: 15px;
}.education-history .feedback-cloud .employee-history {
    font-size: calc(15px * 1.05);
    padding: 0.5rem 1rem 0.5rem 2rem;
}
}

@media (max-width: 576px) {.education-history {
    padding: 4rem 0;
}.education-history .feedback-cloud {
    padding: 2rem;
    gap: 1.5rem;
}.education-history .feedback-cloud .img-stack {
    max-width: 220px;
}.education-history .feedback-cloud .name {
    font-size: 22px;
}.education-history .feedback-cloud > div:nth-child(2) > div {
    font-size: calc(15px * 0.9);
}.education-history .feedback-cloud .employee-history {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
    padding: 0.5rem 0 0.5rem 1rem;
}}.landing-page {
    width: 100%;
    position: relative;
    background-color: rgb(154,202,186);
    height: 100vh;
    overflow: hidden;
}.landing-page .study-guides {
    height: 100%;
    display: flex;
    z-index: 3;
    align-items: center;
    position: relative;
    justify-content: center;
    width: 100%;
}.landing-page .main-begin {
    left: 0;
    overflow: hidden;
    top: 0;
    height: 100%;
    position: absolute;
    z-index: 1;
    width: 100%;
}.landing-page .main-begin::before {
    background: linear-gradient(
        0deg,
        rgb(154,202,186,0.5) 0%,
        transparent 50%,
        rgb(154,202,186,0.5) 100%
    );
    position: absolute;
    pointer-events: none;
    content: "";
    inset: 0;
    z-index: 2;
}.landing-page .main-begin::after {
    inset: 0;
    opacity: 0.7;
    content: "";
    position: absolute;
    background: radial-gradient(
        ellipse at center,
        transparent 40%,
        rgb(106,174,157) 100%
    );
    pointer-events: none;
    z-index: 2;
}.landing-page .study-tools {
    width: 100%;
    height: 100%;
    display: grid;
    animation: grid-shuffle 25s ease-in-out infinite;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}.landing-page .main-title {
    opacity: 1;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}.landing-page .main-title:nth-child(1) {
    animation: scale-up 25s infinite ease-in-out;
    grid-area: 1 / 1 / 2 / 2;
}.landing-page .main-title:nth-child(2) {
    animation-delay: 6.25s;
    animation: scale-down 25s infinite ease-in-out;
    grid-area: 1 / 2 / 2 / 3;
}.landing-page .main-title:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
    animation: scale-up 25s infinite ease-in-out;
    animation-delay: 12.5s;
}.landing-page .main-title:nth-child(4) {
    animation-delay: 18.75s;
    grid-area: 2 / 2 / 3 / 3;
    animation: scale-down 25s infinite ease-in-out;
}.landing-page .study-tools:has(.main-title:nth-child(1):nth-last-child(1)) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}.landing-page .study-tools:has(.main-title:nth-child(1):nth-last-child(1)) .main-title:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}.landing-page .study-tools:has(.main-title:nth-child(2):nth-last-child(1)) {
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
}.landing-page .study-tools:has(.main-title:nth-child(2):nth-last-child(1)) .main-title:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}.landing-page .study-tools:has(.main-title:nth-child(2):nth-last-child(1)) .main-title:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}.landing-page .study-tools:has(.main-title:nth-child(3):nth-last-child(1)) {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
}.landing-page .study-tools:has(.main-title:nth-child(3):nth-last-child(1)) .main-title:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}.landing-page .study-tools:has(.main-title:nth-child(3):nth-last-child(1)) .main-title:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}.landing-page .study-tools:has(.main-title:nth-child(3):nth-last-child(1)) .main-title:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
}.landing-page .main-title img {
    height: calc(100% + 20px);
    width: calc(100% + 20px);
    object-fit: cover;
    transition: all 0.5s ease;
    margin: -10px;
    filter: grayscale(30%) brightness(0.8);
}.landing-page .main-title::before {
    background: linear-gradient(
        rgb(154,202,186,0.5),
        transparent
    );
    position: absolute;
    content: "";
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
    opacity: 0;
    z-index: 1;
    inset: 0;
}.landing-page .main-title:nth-child(even)::before {
    background: linear-gradient(
        rgb(106,174,157,0.5),
        transparent
    );
}.landing-page .carousel-auto-slide.active::before {
    opacity: 0.6;
}.landing-page .caption-box {
    text-align: center;
    width: 70%;
    position: absolute;
    backdrop-filter: blur(10px);
    z-index: 5;
    max-width: 800px;
    padding: 3rem;
    transition: all 0.5s ease;
}.landing-page .caption-box::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    content: "";
}.landing-page .caption-box::after {
    background-size: 200% 200%;
    background-image: 
        linear-gradient(90deg, transparent 30%, rgb(154,202,186) 50%, transparent 70%),
        linear-gradient(180deg, transparent 30%, rgb(106,174,157) 50%, transparent 70%);
    inset: -5px;
    background-position: 0% 0%;
    z-index: -2;
    filter: blur(8px);
    border-radius: 10px;
    position: absolute;
    opacity: 0.5;
    content: "";
    animation: border-light 5s linear infinite;
}.landing-page .caption-box h1 {
    font-size: 41px;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    margin-bottom: 1.5rem;
}.landing-page .caption-box h1::after {
    display: block;
    height: 2px;
    content: "";
    width: 80px;
    background: linear-gradient(90deg, rgb(154,202,186), rgb(106,174,157));
    margin: 15px auto 0;
}.landing-page .caption-box p {
    opacity: 0.9;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 12px;
}.landing-page .caption-box .query-message {
    display: inline-block;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.5s ease;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    position: relative;
    background-color: rgb(154,202,186);
    font-weight: 600;
    padding: 1rem 2.5rem;
}.landing-page .caption-box .query-message::before {
    content: "";
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgb(154,202,186),
        rgb(106,174,157),
        rgb(154,202,186)
    );
    width: 100%;
    height: 100%;
    top: 0;
    transition: all 0.5s ease;
    background-position: 0% 0%;
    position: absolute;
    left: 0;
    background-size: 200% 100%;
}.landing-page .caption-box .query-message:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}.landing-page .caption-box .query-message:hover::before {
    background-position: 100% 0%;
}

@keyframes grid-shuffle {
    0%, 20% {
        transform: rotate(0deg) scale(1.1);
    }
    25%, 45% {
        transform: rotate(5deg) scale(1.15);
    }
    50%, 70% {
        transform: rotate(0deg) scale(1.2);
    }
    75%, 95% {
        transform: rotate(-5deg) scale(1.15);
    }
    100% {
        transform: rotate(0deg) scale(1.1);
    }
}

@keyframes scale-up {
    0%, 5%, 25%, 30%, 50%, 55%, 75%, 80%, 100% {
        opacity: 0.4;
    }
    10%, 15%, 20%, 35%, 40%, 45%, 60%, 65%, 70%, 85%, 90%, 95% {
        opacity: 1;
    }
}

@keyframes scale-down {
    0%, 5%, 25%, 30%, 50%, 55%, 75%, 80%, 100% {
        opacity: 1;
    }
    10%, 15%, 20%, 35%, 40%, 45%, 60%, 65%, 70%, 85%, 90%, 95% {
        opacity: 0.4;
    }
}

@keyframes border-light {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@media (max-width: 992px) {.landing-page .caption-box {
    padding: 2.5rem;
    width: 80%;
}.landing-page .caption-box h1 {
    font-size: calc(41px * 0.85);
}.landing-page .caption-box p {
    font-size: calc(12px * 0.95);
}
}

@media (max-width: 768px) {.landing-page .caption-box {
    padding: 2rem;
    width: 85%;
}.landing-page .caption-box h1 {
    margin-bottom: 1.2rem;
    font-size: calc(41px * 0.7);
}.landing-page .caption-box h1::after {
    width: 60px;
    margin: 10px auto 0;
}.landing-page .caption-box p {
    margin-bottom: 1.5rem;
    font-size: calc(12px * 0.9);
    line-height: 1.6;
}.landing-page .caption-box .query-message {
    padding: 0.8rem 2rem;
}
    
    @keyframes grid-shuffle {
        0%, 20% {
            transform: rotate(0deg) scale(1.05);
        }
        25%, 45% {
            transform: rotate(3deg) scale(1.1);
        }
        50%, 70% {
            transform: rotate(0deg) scale(1.15);
        }
        75%, 95% {
            transform: rotate(-3deg) scale(1.1);
        }
        100% {
            transform: rotate(0deg) scale(1.05);
        }
    }
}

@media (max-width: 576px) {.landing-page .caption-box {
    padding: 1.5rem;
    width: 90%;
}.landing-page .caption-box h1 {
    font-size: calc(41px * 0.6);
    margin-bottom: 1rem;
}.landing-page .caption-box h1::after {
    margin: 8px auto 0;
    width: 50px;
}.landing-page .caption-box p {
    margin-bottom: 1.2rem;
    font-size: calc(12px * 0.85);
    line-height: 1.5;
}.landing-page .caption-box .query-message {
    padding: 0.7rem 1.7rem;
    font-size: calc(20px * 0.9);
}@keyframes grid-shuffle {
        0%, 20% {
            transform: rotate(0deg) scale(1.03);
        }
        25%, 45% {
            transform: rotate(2deg) scale(1.06);
        }
        50%, 70% {
            transform: rotate(0deg) scale(1.09);
        }
        75%, 95% {
            transform: rotate(-2deg) scale(1.06);
        }
        100% {
            transform: rotate(0deg) scale(1.03);
        }
    }
}.contact-panel {
    overflow: hidden;
    padding: 100px 0;
    background: rgb(201,231,219);
    position: relative;
}.contact-panel::before {
    opacity: 0.07;
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(154,202,186,0.5) 0,
        rgb(154,202,186,0.5) 1px,
        transparent 1px,
        transparent 30px
    );
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    content: "";
    z-index: 1;
}.contact-panel::after {
    left: 0;
    width: 100%;
    background-image: 
        linear-gradient(rgb(106,174,157,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgb(106,174,157,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    top: 0;
    position: absolute;
    opacity: 0.07;
    height: 100%;
    content: "";
}.contact-panel .container {
    max-width: 1200px;
    z-index: 2;
    padding: 0 30px;
    position: relative;
    margin: 0 auto;
}.contact-panel h2 {
    padding-bottom: 20px;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    font-size: 34px;
    position: relative;
    left: 50%;
    margin-bottom: 20px;
    color: #000000;
    transform: translateX(-50%);
}.contact-panel h2::before {
    height: 4px;
    width: 80px;
    position: absolute;
    background: rgb(154,202,186);
    bottom: 0;
    content: "";
    left: calc(50% - 40px);
}.contact-panel h2::after {
    content: "";
    background: rgb(106,174,157);
    width: 30px;
    height: 4px;
    left: calc(50% - 15px);
    position: absolute;
    bottom: 0;
}.contact-panel .feedback-help {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 50px;
    background: #ffffff;
    display: flex;
}.contact-panel .img-stack {
    flex: 0 0 45%;
    position: relative;
    min-height: 550px;
}.contact-panel .img-stack::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(
        135deg, 
        rgba(rgb(154,202,186), 0.4), 
        rgba(rgb(106,174,157), 0.4)
    );
}.contact-panel .help-info {
    position: relative;
    justify-content: center;
    display: flex;
    flex: 0 0 55%;
    flex-direction: column;
    padding: 60px;
}.contact-panel .help-info::before {
    right: -75px;
    top: -75px;
    content: "";
    width: 150px;
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    height: 150px;
    border: 30px solid rgb(154,202,186,0.5);
}.contact-panel .help-info::after {
    background: rgb(106,174,157,0.5);
    z-index: 0;
    left: -50px;
    position: absolute;
    height: 100px;
    width: 100px;
    content: "";
    bottom: -50px;
    border-radius: 0;
    transform: rotate(45deg);
}.contact-panel form {
    z-index: 2;
    position: relative;
}.contact-panel form h3 {
    font-size: 22px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: #000000;
    font-weight: 600;
}.contact-panel form h3::after {
    content: "";
    position: absolute;
    background: rgb(154,202,186);
    width: 50%;
    bottom: -15px;
    left: 0;
    height: 2px;
}.contact-panel form input[type="text"] {
    transition: all 0.3s ease;
    border-bottom: 2px solid rgb(201,231,219);
    padding: 20px 25px;
    margin-bottom: 25px;
    border: none;
    font-size: 14px;
    width: 100%;
    background: transparent;
    color: #000000;
}.contact-panel form input[type="text"]:focus {
    border-bottom-color: rgb(154,202,186);
    outline: none;
}.contact-panel form input[type="text"]::placeholder {
    transition: all 0.3s ease;
    color: rgba(#000000, 0.5);
}.contact-panel form input[type="text"]:focus::placeholder {
    opacity: 0;
    transform: translateY(-10px);
}.contact-panel .help-grid {
    position: relative;
    margin-bottom: 40px;
}.contact-panel .help-grid input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact-panel .help-grid label {
    position: relative;
    line-height: 1.5;
    color: #000000;
    font-size: 15px;
    cursor: pointer;
    padding-left: 35px;
}.contact-panel .help-grid label::before {
    top: 0;
    background: transparent;
    transition: all 0.3s ease;
    height: 22px;
    content: "";
    border: 2px solid rgb(201,231,219);
    width: 22px;
    position: absolute;
    left: 0;
}.contact-panel .help-grid input[type="checkbox"]:checked + label::before {
    background: rgb(154,202,186);
    border-color: rgb(154,202,186);
}.contact-panel .help-grid input[type="checkbox"]:checked + label::after {
    left: 8px;
    width: 6px;
    border: solid #ffffff;
    transform: rotate(45deg);
    position: absolute;
    content: "";
    top: 4px;
    border-width: 0 2px 2px 0;
    height: 12px;
}.contact-panel .help-grid label a {
    position: relative;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgb(154,202,186);
}.contact-panel .help-grid label a::after {
    width: 100%;
    position: absolute;
    background: rgb(154,202,186);
    transform-origin: left;
    left: 0;
    height: 1px;
    transition: transform 0.3s ease;
    bottom: -1px;
    transform: scaleX(1);
    content: "";
}.contact-panel .help-grid label a:hover {
    color: rgb(106,174,157);
}.contact-panel .help-grid label a:hover::after {
    transform: scaleX(0);
    background: rgb(106,174,157);
}.contact-panel .query-message {
    font-weight: 600;
    overflow: hidden;
    width: auto;
    transition: all 0.3s ease;
    background: rgb(154,202,186);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 70%,
        90% 100%,
        0 100%
    );
    cursor: pointer;
    border: none;
    z-index: 1;
    padding: 18px 40px;
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 19px;
}.contact-panel .query-message::before {
    z-index: -1;
    height: 100%;
    top: 0;
    left: -10px;
    position: absolute;
    transition: width 0.5s ease;
    transform: skewX(-25deg);
    background: rgb(106,174,157);
    width: 0;
    content: "";
}.contact-panel .query-message:hover::before {
    width: 150%;
}.contact-panel svg {
    stroke-width: 2;
    fill: none;
    height: 24px;
    stroke: rgb(154,202,186);
    transition: all 0.3s ease;
    width: 24px;
}.contact-panel svg path {
    transition: all 0.3s ease;
    fill: none;
    stroke: rgb(154,202,186);
}.contact-panel svg:hover,
.contact-panel svg:hover path {
    stroke: rgb(106,174,157);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1024px) {.contact-panel {
    padding: 80px 0;
}.contact-panel .img-stack {
    min-height: 500px;
}.contact-panel .help-info {
    padding: 50px 40px;
}
}

@media (max-width: 768px) {.contact-panel {
    padding: 60px 0;
}.contact-panel .feedback-help {
    flex-direction: column;
}.contact-panel .img-stack {
    width: 100%;
    min-height: 300px;
}.contact-panel .help-info {
    padding: 40px 30px;
    width: 100%;
}.contact-panel form h3 {
    margin-bottom: 30px;
}.contact-panel form input[type="text"] {
    padding: 15px 20px;
    margin-bottom: 20px;
}.contact-panel .help-grid {
    margin-bottom: 30px;
}.contact-panel .query-message {
    width: 100%;
    padding: 15px 30px;
}
}

@media (max-width: 480px) {.contact-panel {
    padding: 50px 0;
}.contact-panel h2 {
    font-size: calc(34px * 0.85);
}.contact-panel .feedback-help {
    margin-top: 30px;
}.contact-panel .img-stack {
    min-height: 200px;
}.contact-panel .help-info {
    padding: 30px 20px;
}.contact-panel form h3 {
    font-size: calc(22px * 0.9);
    margin-bottom: 25px;
}.contact-panel form input[type="text"] {
    margin-bottom: 15px;
    padding: 12px 15px;
}.contact-panel .help-grid {
    margin-bottom: 25px;
}.contact-panel .help-grid label {
    font-size: calc(15px * 0.9);
}.contact-panel .query-message {
    padding: 12px 25px;
}}.program-offerings {
    background: linear-gradient(135deg, rgb(201,231,219) 0%, rgba(255,255,255,0.9) 100%);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}.program-offerings::before {
    top: -5%;
    right: -10%;
    z-index: 0;
    height: 60%;
    width: 40%;
    filter: blur(60px);
    position: absolute;
    background: linear-gradient(145deg, rgb(106,174,157,0.5) 0%, rgb(154,202,186,0.5) 100%);
    opacity: 0.5;
    content: "";
    transform: rotate(-15deg);
}.program-offerings::after {
    z-index: 0;
    width: 40%;
    transform: rotate(15deg);
    content: "";
    position: absolute;
    bottom: -5%;
    opacity: 0.3;
    background: linear-gradient(145deg, rgb(154,202,186,0.5) 0%, rgb(106,174,157) 20%, transparent 100%);
    height: 60%;
    filter: blur(60px);
    left: -10%;
}.program-offerings .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    padding: 0 20px;
    position: relative;
}.program-offerings h2 {
    position: relative;
    font-size: 32px;
    text-align: left;
    animation: slideInTitle 0.8s ease-out 0.2s forwards;
    color: #000000;
    transform: translateX(-20px);
    font-weight: 700;
    margin-bottom: 3rem;
    opacity: 0;
}.program-offerings h2::after {
    animation: expandLine 0.6s ease-out 1s forwards;
    display: block;
    width: 80px;
    height: 4px;
    margin-top: 15px;
    transform: scaleX(0);
    content: "";
    background: linear-gradient(90deg, rgb(154,202,186), rgb(106,174,157));
    transform-origin: left;
}.program-offerings .study-route {
    gap: 3rem;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    display: grid;
    transform: translateY(20px);
    opacity: 0;
    grid-template-columns: 1fr;
}.program-offerings .img-stack {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 300px;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease-out;
}.program-offerings .img-stack::before {
    width: 100%;
    z-index: 1;
    position: absolute;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    content: "";
    height: 100%;
    top: 0;
    left: 0;
}.program-offerings .img-stack::after {
    left: -10%;
    animation: shimmer 8s infinite alternate ease-in-out;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, rgb(106,174,157,0.5) 0%, transparent 70%);
    height: 120%;
    width: 120%;
    top: -10%;
    z-index: 2;
    opacity: 0.5;
    mix-blend-mode: overlay;
}.program-offerings .caption-box {
    border: 1px solid rgba(255,255,255,0.2);
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(5px);
    overflow: hidden;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}.program-offerings .caption-box::before {
    height: 5px;
    transform: scaleX(0);
    top: 0;
    width: 100%;
    animation: expandLine 0.8s ease-out 1.2s forwards;
    position: absolute;
    left: 0;
    transform-origin: left;
    content: "";
    background: linear-gradient(90deg, rgb(154,202,186), rgb(106,174,157));
}.program-offerings .description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 14px;
    transform: translateY(15px);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    color: #000000;
}.program-offerings .description:first-of-type::first-letter {
    float: left;
    color: rgb(154,202,186);
    font-size: 1.8em;
    line-height: 0.8;
    padding-right: 0.1em;
    font-weight: 700;
}.program-offerings .description:last-of-type {
    margin-bottom: 0;
    animation-delay: 1s;
}

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

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

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

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

@keyframes shimmer {
    0% {
        transform: translate(-10%, -10%) scale(1.1);
    }
    100% {
        transform: translate(5%, 5%) scale(1);
    }
}

@media (min-width: 768px) {.program-offerings {
    padding: 8rem 0;
}.program-offerings h2 {
    max-width: 80%;
    font-size: calc(32px * 1.2);
}.program-offerings .study-route {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}.program-offerings .img-stack {
    transform: perspective(1000px) rotateY(-3deg);
    height: 500px;
}.program-offerings .img-stack:hover {
    transform: perspective(1000px) rotateY(0deg);
}.program-offerings .caption-box {
    padding: 3rem;
}
}

@media (min-width: 992px) {.program-offerings {
    padding: 10rem 0;
}.program-offerings h2 {
    max-width: 70%;
    font-size: calc(32px * 1.4);
}.program-offerings .study-route {
    gap: 6rem;
}.program-offerings .img-stack {
    height: 600px;
}.program-offerings .description {
    line-height: 1.9;
    font-size: calc(14px * 1.05);
}
}

@media (max-width: 767px) {.program-offerings h2 {
    text-align: center;
    font-size: calc(32px * 0.9);
}.program-offerings h2::after {
    margin: 15px auto 0;
}.program-offerings .img-stack {
    order: -1;
}.program-offerings .caption-box {
    padding: 1.5rem;
}.program-offerings .description {
    font-size: calc(14px * 0.95);
    line-height: 1.7;
}}header {
    overflow: visible;
    z-index: 100;
    margin-top: 0;
    position: relative;
    background: linear-gradient(90deg, rgb(106,174,157) 0%, rgb(154,202,186) 100%);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    padding: 0;
}header::before {
    left: 0;
    position: absolute;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 5px,
        transparent 5px,
        transparent 25px
    );
    height: 100%;
    content: '';
    z-index: 0;
    top: 0;
    width: 100%;
}header .head-teach {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;
    position: relative;
    z-index: 5;
}header .header-bar {
    overflow: visible;
    padding: 0.5rem;
    position: relative;
    flex: 0 0 auto;
    margin-right: 2rem;
}header .header-bar::before {
    left: -5px;
    position: absolute;
    content: '';
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0.1;
    transform: skew(-5deg);
    top: -5px;
    right: -5px;
    bottom: -5px;
}header .header-bar::after {
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    position: absolute;
    opacity: 0;
    content: '';
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
    bottom: -5px;
    right: -5px;
    transform: skew(-5deg);
    top: -5px;
    left: -5px;
    z-index: -1;
}header .header-bar:hover::before {
    opacity: 0;
}header .header-bar:hover::after {
    animation: neonPulse 1.5s infinite alternate;
    opacity: 0.5;
}@keyframes neonPulse {
    0% { opacity: 0.3; box-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; }
    100% { opacity: 0.7; box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff; }
}

header .nav-info {
    position: relative;
    transition: all 0.3s ease;
    display: block;
}header .nav-info:hover {
    transform: scale(1.05);
}header .nav-info img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    max-height: 40px;
}header .main-core {
    margin: 0;
    position: relative;
    list-style: none;
    display: flex;
    z-index: 2;
    padding: 0;
}header .nav-master {
    position: relative;
    margin: 0 0.4rem;
}header .nav-master a {
    text-shadow: 0 0 5px #ffffff;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    padding: 0 1.2rem;
    font-weight: 600;
    z-index: 1;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    align-items: center;
    height: 40px;
    position: relative;
}header .nav-master a::before {
    position: absolute;
    content: '';
    right: -2px;
    bottom: -2px;
    background: #ffffff;
    left: -2px;
    transition: opacity 0.3s ease;
    z-index: -1;
    transform: scale(0.9);
    opacity: 0;
    top: -2px;
}header .nav-master a:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    border-color: #ffffff;
    text-shadow: none;
    color: rgb(154,202,186);
}header .nav-master a:hover::before {
    opacity: 1;
    transform: scale(1);
}header .nav-master::after {
    left: 10%;
    opacity: 0;
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transition: all 0.3s ease;
    filter: blur(3px);
    bottom: -10px;
    content: '';
    position: absolute;
}header .nav-master:hover::after {
    bottom: -5px;
    opacity: 0.5;
}header .head-teach::before {
    top: 0;
    content: '';
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    width: 100%;
    left: 0;
    position: absolute;
    height: 1px;
}header .head-teach::after {
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    position: absolute;
    left: 0;
    width: 100%;
    content: '';
    height: 1px;
}header .head-primary {
    position: relative;
    background: rgb(201,231,219);
    padding-top: 2rem;
    z-index: 1;
}

@media (min-width: 1400px) {header .head-teach {
    max-width: 1320px;
    margin: 0 auto;
}header .nav-master {
    margin: 0 0.6rem;
}header .nav-master a {
    padding: 0 1.5rem;
}
}

@media (max-width: 991px) {header .head-teach {
    flex-wrap: wrap;
    padding: 1rem 2rem;
}header .header-bar {
    margin-right: 0;
    margin-bottom: 0;
}header .main-core {
    flex-basis: 100%;
    margin-top: 1rem;
    justify-content: flex-end;
}header .nav-master a {
    padding: 0 1rem;
    font-size: calc(15px - 1px);
    height: 36px;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .head-teach {
    padding: 0.8rem 1.5rem;
}header .header-bar {
    max-width: 140px;
}header .header-bar::before, 
    header .header-bar::after {
    bottom: -3px;
    top: -3px;
    right: -3px;
    left: -3px;
}header .nav-info img {
    max-height: 35px;
}header .main-core {
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    overflow-x: auto;
    margin-top: 0.8rem;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}header .main-core::-webkit-scrollbar {
    height: 3px;
}header .main-core::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
}header .nav-master {
    flex: 0 0 auto;
    margin: 0 0.2rem;
}header .nav-master a {
    white-space: nowrap;
    font-size: calc(15px - 2px);
    height: 32px;
    padding: 0 0.8rem;
}header .nav-master::after {
    display: none;
}
}

@media (max-width: 479px) {header .head-teach {
    padding: 0.7rem 1.2rem;
}header .header-bar {
    max-width: 120px;
}header .nav-master a {
    height: 30px;
    padding: 0 0.6rem;
    font-size: calc(15px - 3px);
}}.gratitudeBox {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(201,231,219) 0%, rgba(255,255,255,0.95) 100%);
}.gratitudeBox::before {
    content: "";
    background-image: radial-gradient(circle at 20% 30%, rgb(154,202,186,0.5) 0%, transparent 40%),
                      radial-gradient(circle at 80% 70%, rgb(106,174,157,0.5) 0%, transparent 40%);
    position: absolute;
    opacity: 0.07;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}.gratitudeBox::after {
    z-index: 0;
    position: absolute;
    transform: rotate(15deg);
    filter: blur(80px);
    content: "";
    background: linear-gradient(225deg, rgb(154,202,186,0.5) 0%, transparent 70%);
    opacity: 0.1;
    height: 300px;
    top: -10%;
    right: -5%;
    width: 300px;
}.gratitudeBox .container {
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    position: relative;
}.gratitudeBox .study-guides {
    grid-template-columns: 1fr;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), 
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: grid;
    background: #ffffff;
    padding: 60px 40px;
    perspective: 1000px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04), 
                0 5px 15px rgba(0,0,0,0.03),
                0 0 0 1px rgba(0,0,0,0.02);
    gap: 40px;
    transform-style: preserve-3d;
}.gratitudeBox .study-guides::before {
    animation: borderGrow 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    height: 0%;
    background: linear-gradient(to bottom, rgb(154,202,186), rgb(106,174,157));
    position: absolute;
    content: "";
    animation-delay: 0.5s;
    width: 3px;
    top: 0;
    left: 0;
}.gratitudeBox .study-guides::after {
    height: 80px;
    transform: rotate(5deg);
    right: -10px;
    position: absolute;
    width: 80px;
    z-index: -1;
    opacity: 0.1;
    content: "";
    background: linear-gradient(135deg, rgb(154,202,186) 0%, rgb(106,174,157) 100%);
    top: -10px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}.gratitudeBox .study-guides > div:first-child {
    transition: transform 0.5s ease;
    position: relative;
    transform: translateZ(20px);
    padding-left: 20px;
}.gratitudeBox .study-guides > div:first-child::before {
    transform: translateY(-50%);
    height: 8px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    content: "";
    position: absolute;
    width: 8px;
    top: 50%;
    left: 0;
    background: rgb(154,202,186);
}.gratitudeBox .study-guides > div:last-child {
    position: relative;
    transition: transform 0.5s ease;
    transform: translateZ(10px);
}.gratitudeBox h5 {
    opacity: 0;
    line-height: 1.4;
    font-size: 22px;
    animation: slideUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    font-weight: 700;
    color: #000000;
    transform: translateY(20px);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}.gratitudeBox h5::after {
    left: 0;
    animation: lineGrow 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    position: absolute;
    bottom: -8px;
    background: linear-gradient(to right, rgb(154,202,186), transparent);
    height: 2px;
    content: "";
    transform-origin: left;
    animation-delay: 0.8s;
    transform: scaleX(0);
    width: 60px;
}.gratitudeBox a {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
    text-decoration: none;
}.gratitudeBox a:hover {
    transform: translateY(-5px);
}.gratitudeBox p {
    font-size: 12px;
    background: rgba(245, 245, 250, 0.7);
    transition: border-left 0.3s ease, background 0.3s ease;
    line-height: 1.8;
    position: relative;
    opacity: 0;
    color: #000000;
    border-left: 1px solid rgba(rgb(154,202,186,0.5), 0.2);
    animation: slideUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.3s;
    padding: 25px 30px;
    margin: 0;
    transform: translateY(20px);
}.gratitudeBox a:hover p {
    border-left: 3px solid rgb(154,202,186);
    background: rgba(245, 245, 250, 0.9);
}.gratitudeBox p::before {
    top: 10px;
    opacity: 0.2;
    content: "";
    line-height: 1;
    font-size: 60px;
    left: 10px;
    color: rgb(154,202,186,0.5);
    position: absolute;
    font-family: serif;
}.gratitudeBox p::after {
    color: rgb(106,174,157,0.5);
    opacity: 0.2;
    font-family: serif;
    bottom: -20px;
    right: 10px;
    content: "";
    line-height: 1;
    font-size: 60px;
    position: absolute;
}

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

@keyframes lineGrow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes borderGrow {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}

@media (min-width: 768px) {.gratitudeBox {
    padding: 150px 0;
}.gratitudeBox .study-guides {
    padding: 80px 60px;
    grid-template-columns: 1fr 1fr;
}.gratitudeBox .study-guides > div:first-child {
    align-items: center;
    display: flex;
}.gratitudeBox h5 {
    font-size: calc(22px * 1.2);
    margin-bottom: 0;
}.gratitudeBox p {
    font-size: calc(12px * 1.05);
}
}

@media (min-width: 992px) {.gratitudeBox .study-guides {
    padding: 100px 80px;
    gap: 60px;
}.gratitudeBox .study-guides:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.07), 
                    0 12px 25px rgba(0,0,0,0.05),
                    0 0 0 1px rgba(0,0,0,0.02);
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
}.gratitudeBox .study-guides:hover > div:first-child {
    transform: translateZ(35px);
}.gratitudeBox .study-guides:hover > div:last-child {
    transform: translateZ(25px);
}.gratitudeBox h5 {
    font-size: calc(22px * 1.3);
}.gratitudeBox p {
    line-height: 1.9;
    font-size: calc(12px * 1.1);
}
}

@media (max-width: 767px) {.gratitudeBox {
    padding: 80px 0;
}.gratitudeBox .study-guides {
    padding: 40px 30px;
}.gratitudeBox h5 {
    font-size: calc(22px * 0.9);
}.gratitudeBox p {
    padding: 20px 25px;
    font-size: calc(12px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 480px) {.gratitudeBox {
    padding: 60px 0;
}.gratitudeBox .study-guides {
    padding: 30px 20px;
}.gratitudeBox h5 {
    font-size: calc(22px * 0.85);
}.gratitudeBox p {
    font-size: calc(12px * 0.9);
    padding: 15px 20px;
}}.price-card-item {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: rgb(201,231,219);
}.price-card-item::before {
    right: -50px;
    content: "";
    animation: float-effect 12s infinite alternate ease-in-out;
    z-index: 0;
    top: -50px;
    filter: blur(80px);
    background: rgb(154,202,186,0.5);
    width: 300px;
    position: absolute;
    height: 300px;
}.price-card-item::after {
    background: rgb(106,174,157,0.5);
    position: absolute;
    z-index: 0;
    height: 250px;
    animation: float-effect 15s infinite alternate-reverse ease-in-out;
    filter: blur(60px);
    content: "";
    width: 250px;
    left: -50px;
    bottom: -50px;
}.price-card-item .container {
    position: relative;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    padding: 0 15px;
}.price-card-item .tuition-table {
    display: flex;
    flex-direction: column;
    gap: 60px;
}.price-card-item .learning-fee {
    padding: 0 20px;
    position: relative;
    max-width: 700px;
    order: -1;
    text-align: center;
    margin: 0 auto;
}.price-card-item .learning-fee h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #000000;
    font-size: 35px;
    font-weight: 700;
}.price-card-item .learning-fee h2::after {
    height: 3px;
    width: 80px;
    position: absolute;
    content: "";
    bottom: -10px;
    transform: translateX(-50%);
    background: rgb(154,202,186);
    left: 50%;
}.price-card-item .discount-price {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.85;
    color: #000000;
}.price-card-item .rate-list {
    perspective: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}.price-card-item .fee-options {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
    position: relative;
    color: inherit;
    text-decoration: none;
    height: 100%;
    perspective: 1000px;
}.price-card-item .fee-options:hover {
    transform: translateY(-10px) scale(1.02);
}.price-card-item .pro-rates {
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    transition: box-shadow 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
}.price-card-item .fee-options:hover .pro-rates {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 20px rgb(154,202,186,0.5);
}.price-card-item .learning-rates {
    flex-grow: 1;
    flex-direction: column;
    z-index: 2;
    overflow: hidden;
    display: flex;
    position: relative;
    padding: 30px;
}.price-card-item .learning-rates::before {
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(154,202,186), rgb(106,174,157));
    top: 0;
    height: 5px;
    transform-origin: left;
    right: 0;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    position: absolute;
}.price-card-item .fee-options:hover .learning-rates::before {
    transform: scaleX(1);
}.price-card-item .learning-rates h3 {
    word-break: break-word;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000000;
    transition: transform 0.4s ease, color 0.3s ease;
    overflow-wrap: break-word;
    font-size: calc(19px + 2px);
    white-space: normal;
}.price-card-item .fee-options:hover .learning-rates h3 {
    transform: translateX(5px);
    color: rgb(154,202,186);
}.price-card-item .plan-matrix {
    display: block;
    margin: 10px 0 20px;
    white-space: normal;
    font-size: 19px;
    transition: transform 0.4s ease;
    font-weight: 700;
    overflow-wrap: break-word;
    color: rgb(106,174,157);
    position: relative;
    word-break: break-word;
}.price-card-item .plan-matrix::before {
    transition: width 0.4s ease;
    left: 0;
    position: absolute;
    height: 2px;
    content: "";
    bottom: -8px;
    background: rgb(106,174,157,0.5);
    width: 40px;
}.price-card-item .fee-options:hover .plan-matrix::before {
    width: 80px;
}.price-card-item .learning-rates p {
    white-space: normal;
    color: #000000;
    flex-grow: 1;
    font-size: calc(14px - 1px);
    word-break: break-word;
    line-height: 1.6;
    margin-bottom: 0;
    overflow-wrap: break-word;
    transition: color 0.3s ease;
}.price-card-item .img-stack {
    height: 200px;
    transform: translateZ(-10px);
    transition: transform 0.6s ease, filter 0.6s ease;
    overflow: hidden;
    position: relative;
}.price-card-item .img-stack::after {
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    inset: 0;
    transition: opacity 0.5s ease;
    opacity: 0.6;
    content: "";
}.price-card-item .fee-options:hover .img-stack {
    transform: translateZ(0);
    filter: brightness(1.1) contrast(1.05);
}.price-card-item .fee-options:hover .img-stack::after {
    opacity: 0.4;
}.price-card-item .fee-options::after {
    transition: opacity 0.4s ease;
    filter: blur(10px);
    right: 30px;
    position: absolute;
    left: 30px;
    top: 100%;
    z-index: -1;
    border-radius: 50%;
    opacity: 0;
    background: rgb(154,202,186,0.5);
    content: "";
    height: 15px;
}.price-card-item .fee-options:hover::after {
    opacity: 0.5;
}

@keyframes float-effect {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
    100% {
        transform: translate(-20px, -20px) scale(0.9);
    }
}

@media (min-width: 992px) {.price-card-item .tuition-table {
    align-items: center;
    flex-direction: row;
}.price-card-item .learning-fee {
    text-align: left;
    padding-right: 40px;
    order: 0;
    flex: 0 0 30%;
}.price-card-item .learning-fee h2::after {
    left: 0;
    transform: none;
}.price-card-item .rate-list {
    flex: 0 0 70%;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1200px) {.price-card-item .rate-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.price-card-item .learning-rates {
    padding: 35px;
}.price-card-item .img-stack {
    height: 220px;
}
}

@media (max-width: 991px) {.price-card-item {
    padding: 80px 0;
}.price-card-item .learning-fee {
    margin-bottom: 20px;
}
}

@media (max-width: 767px) {.price-card-item {
    padding: 60px 0;
}.price-card-item .rate-list {
    grid-template-columns: 1fr;
    gap: 25px;
}.price-card-item .learning-fee h2 {
    font-size: calc(35px - 4px);
}.price-card-item .img-stack {
    height: 180px;
}.price-card-item .learning-rates {
    padding: 25px;
}
}

@media (max-width: 480px) {.price-card-item {
    padding: 50px 0;
}.price-card-item .learning-rates h3 {
    font-size: 19px;
}.price-card-item .plan-matrix {
    font-size: calc(19px - 2px);
}.price-card-item .img-stack {
    height: 160px;
}.price-card-item .learning-rates {
    padding: 20px;
}}.study-process {
    background: rgb(201,231,219);
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}.study-process::before {
    position: absolute;
    top: -200px;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
    height: 600px;
    animation: moveShape 15s ease-in-out infinite alternate;
    width: 600px;
    background: linear-gradient(135deg, rgb(154,202,186,0.5), rgb(106,174,157,0.5));
    left: -200px;
    content: "";
    filter: blur(100px);
}.study-process::after {
    border-radius: 50%;
    content: "";
    background: linear-gradient(45deg, rgb(106,174,157,0.5), rgb(154,202,186,0.5));
    opacity: 0.4;
    width: 500px;
    bottom: -200px;
    animation: moveShape 15s 3s ease-in-out infinite alternate-reverse;
    height: 500px;
    z-index: 0;
    right: -200px;
    position: absolute;
    filter: blur(100px);
}.study-process .study-guides {
    margin: 0 auto;
    align-items: center;
    flex-direction: column;
    display: flex;
    max-width: 800px;
    z-index: 1;
    position: relative;
}.study-process h3 {
    text-align: center;
    color: #000000;
    font-weight: 700;
    position: relative;
    margin: 0 0 6rem;
    font-size: 33px;
    animation: fadeScale 1s ease-out forwards;
}.study-process h3::before,
.study-process h3::after {
    border-radius: 50%;
    content: "";
    z-index: -1;
    position: absolute;
    background: rgb(154,202,186);
}.study-process h3::before {
    width: 180px;
    background: #ffffff;
    bottom: -90px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: -1;
    left: calc(50% - 90px);
    height: 180px;
}.study-process h3::after {
    background: rgb(154,202,186);
    z-index: 2;
    width: 12px;
    height: 12px;
    animation: orbitalMove 8s linear infinite;
    box-shadow: 0 0 20px rgb(154,202,186,0.5);
    bottom: -6px;
    left: calc(50% - 6px);
}.study-process span {
    border-radius: 20px;
    position: relative;
    width: 100%;
    opacity: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeScale 1s 0.3s ease-out forwards;
    transform: scale(0.9);
    font-size: 15px;
    padding: 3rem;
    z-index: 2;
    line-height: 1.8;
    text-align: center;
    background: #ffffff;
    color: #000000;
}.study-process span::before {
    height: 50px;
    left: calc(50% - 5px);
    top: -50px;
    width: 10px;
    background: linear-gradient(to bottom, rgb(154,202,186), rgb(106,174,157));
    position: absolute;
    content: "";
    z-index: -1;
}.study-process span::after {
    position: absolute;
    opacity: 0.3;
    top: 20px;
    border-radius: 50%;
    width: 120px;
    border: 2px dashed rgb(106,174,157,0.5);
    animation: rotateSlow 20s linear infinite;
    content: "";
    right: 20px;
    height: 120px;
    pointer-events: none;
}

@keyframes moveShape {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes orbitalMove {
    0% {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {.study-process {
    padding: 6rem 1.5rem;
}.study-process h3 {
    font-size: calc(33px * 0.9);
    margin-bottom: 5rem;
}.study-process h3::before {
    left: calc(50% - 80px);
    width: 160px;
    bottom: -80px;
    height: 160px;
}.study-process span {
    padding: 2.5rem;
}
    
    @keyframes orbitalMove {
        0% {
            transform: rotate(0deg) translateX(110px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(110px) rotate(-360deg);
        }
    }
}

@media (max-width: 768px) {.study-process {
    padding: 5rem 1rem;
}.study-process h3 {
    font-size: calc(33px * 0.8);
    margin-bottom: 4.5rem;
}.study-process h3::before {
    left: calc(50% - 70px);
    bottom: -70px;
    height: 140px;
    width: 140px;
}.study-process span {
    font-size: calc(15px * 0.95);
    padding: 2rem;
}.study-process span::after {
    right: 15px;
    height: 80px;
    top: 15px;
    width: 80px;
}@keyframes orbitalMove {
        0% {
            transform: rotate(0deg) translateX(100px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(100px) rotate(-360deg);
        }
    }
}.privacy-safehouse {
    padding: 5rem 2rem;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(201,231,219), #ffffff 85%);
    font-family: Arial, sans-serif;
    position: relative;
}.privacy-safehouse::before {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    opacity: 0.05;
    background: repeating-linear-gradient(
        45deg,
        rgb(154,202,186,0.5),
        transparent 2px,
        transparent 10px,
        rgb(154,202,186,0.5) 12px
    );
    left: 0;
    content: "";
}.privacy-safehouse::after {
    width: 300px;
    z-index: 0;
    border-radius: 50%;
    position: absolute;
    height: 300px;
    background: radial-gradient(circle, rgb(106,174,157,0.5) 0%, transparent 70%);
    right: -5%;
    top: -5%;
    animation: float 15s infinite ease-in-out;
    content: "";
    opacity: 0.15;
}.privacy-safehouse .container {
    max-width: 1140px;
    z-index: 1;
    grid-template-columns: 1fr;
    position: relative;
    margin: 0 auto;
    display: grid;
    transform: translateZ(0);
    gap: 2.5rem;
}.privacy-safehouse h1 {
    margin: 0 0 1.5rem 0;
    font-size: calc(48px * 1.1);
    padding-bottom: 1rem;
    color: rgb(154,202,186);
    position: relative;
    border-bottom: 3px solid rgb(154,202,186);
    transform: translateX(-0.5rem);
    font-weight: 700;
}.privacy-safehouse h1::after {
    animation: slide 8s infinite ease-in-out;
    position: absolute;
    width: 100px;
    content: "";
    left: 0;
    bottom: -3px;
    background: rgb(106,174,157);
    height: 3px;
}.privacy-safehouse h2 {
    transition: transform 0.3s ease;
    border-left: 4px solid rgb(106,174,157);
    padding-left: 1rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    font-size: 30px;
    color: rgb(154,202,186);
}.privacy-safehouse h2:hover {
    transform: translateX(5px);
}.privacy-safehouse h3 {
    color: #000000;
    font-weight: 600;
    padding-left: 0.75rem;
    margin: 1.5rem 0 0.75rem;
    font-size: calc(30px * 0.85);
    border-left: 3px solid rgb(106,174,157,0.5);
}.privacy-safehouse h4 {
    font-weight: 600;
    color: #000000;
    margin: 1.5rem 0 0.75rem;
    padding-left: 0.5rem;
    border-left: 2px solid rgb(106,174,157,0.5);
    font-size: calc(30px * 0.7);
}.privacy-safehouse p {
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 13px;
    max-width: 90ch;
}.privacy-safehouse span {
    line-height: 1.7;
    display: block;
    border-left: 2px solid rgb(106,174,157,0.5);
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: rgba(rgba(0, 0, 0, 0.5), 0.02);
    font-size: 13px;
    transition: background-color 0.3s ease;
    color: #000000;
}.privacy-safehouse span:hover {
    background-color: rgba(rgba(0, 0, 0, 0.5), 0.05);
}.privacy-safehouse ul {
    padding: 0;
    list-style: none;
    margin: 1.5rem 0 2rem 1rem;
}.privacy-safehouse li {
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.7;
    color: #000000;
    font-size: 13px;
    margin-bottom: 1rem;
}.privacy-safehouse li::before {
    transition: transform 0.2s ease;
    content: "";
    transform: rotate(45deg);
    left: 0;
    border: 2px solid rgb(106,174,157);
    width: 8px;
    position: absolute;
    height: 8px;
    top: 0.6rem;
}.privacy-safehouse li:hover::before {
    transform: rotate(225deg);
}.privacy-safehouse strong {
    color: rgb(154,202,186);
    font-weight: 600;
}

@keyframes slide {
    0%, 100% { left: 0; }
    50% { left: calc(100% - 100px); }
}

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

@media (min-width: 768px) {.privacy-safehouse {
    padding: 7rem 3rem;
}.privacy-safehouse .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
}.privacy-safehouse h1 {
    font-size: calc(48px * 1.2);
    margin-bottom: 2rem;
    transform: translateX(-1rem);
}.privacy-safehouse h2 {
    font-size: calc(30px * 1.1);
    padding-left: 1.25rem;
}.privacy-safehouse p {
    font-size: calc(13px * 1.05);
    line-height: 1.75;
}.privacy-safehouse span {
    padding: 1.5rem;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}.privacy-safehouse ul {
    margin-left: 2rem;
}.privacy-safehouse li {
    padding-left: 2rem;
}.privacy-safehouse li::before {
    height: 10px;
    width: 10px;
}
}

@media (min-width: 992px) {.privacy-safehouse {
    padding: 8rem 5rem;
}.privacy-safehouse::before {
    background-size: 15px 15px;
}.privacy-safehouse .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
}.privacy-safehouse h1 {
    font-size: calc(48px * 1.3);
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
}.privacy-safehouse h2 {
    margin: 3rem 0 1.5rem;
}.privacy-safehouse h3, 
    .privacy-safehouse h4 {
    margin: 2rem 0 1rem;
}.privacy-safehouse p,
    .privacy-safehouse span {
    line-height: 1.8;
}.privacy-safehouse span {
    transform: translateZ(0);
    transition: all 0.3s ease;
}.privacy-safehouse span:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}.privacy-safehouse ul {
    gap: 1rem 2rem;
    display: grid;
    margin: 2rem 0 3rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}.privacy-safehouse li {
    margin-bottom: 1.25rem;
}.privacy-safehouse li:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}}.info-details {
    border-top: 4px solid rgb(154,202,186);
    overflow: hidden;
    padding: 80px 0;
    position: relative;
    background: rgb(154,202,186,0.5);
}.info-details::before {
    width: 100%;
    background-image: 
    repeating-linear-gradient(90deg, 
      rgba(255, 255, 255, 0.03) 0px, 
      rgba(255, 255, 255, 0.03) 1px, 
      transparent 1px, 
      transparent 30px
    ),
    repeating-linear-gradient(0deg, 
      rgba(255, 255, 255, 0.03) 0px, 
      rgba(255, 255, 255, 0.03) 1px, 
      transparent 1px, 
      transparent 30px
    );
    left: 0;
    top: 0;
    content: "";
    z-index: 1;
    position: absolute;
    height: 100%;
}.info-details .container {
    z-index: 2;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}.info-details .get-help {
    border-left: 1px solid rgb(154,202,186);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 0;
    position: relative;
    background: rgb(106,174,157);
}.info-details h2 {
    color: #ffffff;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 35px;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 30px;
}.info-details p {
    padding: 30px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}.info-details .message-us {
    padding: 30px;
    justify-content: space-between;
    display: flex;
}.info-details .contact-support {
    height: 70px;
    transition: all 0.3s ease;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #2a2a2a;
    width: 70px;
    border-radius: 50%;
    display: flex;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    align-items: center;
}.info-details .contact-support::before {
    transform: scale(0);
    z-index: -1;
    width: 100%;
    transition: transform 0.3s ease;
    left: 0;
    position: absolute;
    height: 100%;
    background: rgb(154,202,186);
    top: 0;
    content: "";
    border-radius: 50%;
}.info-details .contact-support:hover {
    border-color: rgb(154,202,186);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgb(154,202,186,0.5);
    transform: translateY(-5px);
}.info-details .contact-support:hover::before {
    transform: scale(0.9);
}.info-details .contact-support svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}.info-details .contact-support:hover svg {
    transform: scale(1.2);
}.info-details .contact-support svg path {
    transition: fill 0.3s ease;
    fill: rgb(154,202,186);
}.info-details .contact-support:hover svg path {
    fill: #ffffff;
}.info-details p svg {
    width: 22px;
    height: 22px;
    margin-right: 15px;
}.info-details p svg path {
    fill: rgb(154,202,186);
}.info-details p:nth-last-child(2) {
    border-bottom: none;
    padding: 25px 30px;
    align-items: center;
    display: flex;
}.info-details .get-help::after {
    bottom: -20px;
    background: #1a1a1a;
    position: absolute;
    height: 20px;
    width: calc(100% - 40px);
    content: "";
    right: 20px;
    z-index: -1;
}.info-details .get-help::before {
    content: "";
    background: rgb(154,202,186);
    z-index: 1;
    right: 15px;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 15px;
}

@media (max-width: 991px) {.info-details {
    padding: 60px 0;
}.info-details h2 {
    padding: 25px;
    font-size: calc(35px * 0.9);
}.info-details p,
  .info-details p:nth-last-child(2) {
    padding: 20px 25px;
}.info-details .message-us {
    padding: 25px;
}.info-details .contact-support {
    height: 60px;
    width: 60px;
}.info-details .contact-support svg {
    width: 24px;
    height: 24px;
}
}

@media (max-width: 767px) {.info-details {
    padding: 50px 0;
}.info-details h2 {
    font-size: calc(35px * 0.85);
    padding: 20px;
}.info-details p {
    font-size: calc(15px * 0.95);
    padding: 20px;
}.info-details p:nth-last-child(2) {
    padding: 18px 20px;
}.info-details .message-us {
    padding: 20px;
}.info-details .contact-support {
    height: 50px;
    width: 50px;
}.info-details .contact-support svg {
    height: 20px;
    width: 20px;
}.info-details p svg {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}.info-details .get-help::after {
    height: 10px;
    bottom: -10px;
}.info-details .get-help::before {
    height: 10px;
    top: 10px;
    width: 10px;
    right: 10px;
}}

.info-details .contact-support:active {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 5px rgb(154,202,186,0.5);
    transform: translateY(0);
}@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgb(154,202,186,0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
}

.info-details .contact-support:hover {
    animation: pulse 1.5s infinite;
}@keyframes blink {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
}

.info-details .container::before {
    width: 8px;
    height: 8px;
    animation: blink 2s ease-in-out infinite;
    border-radius: 50%;
    content: "";
    position: absolute;
    right: 45px;
    background: rgb(154,202,186);
    top: 15px;
}.info-details .container::after {
    color: rgb(154,202,186);
    left: 15px;
    letter-spacing: 1px;
    content: attr(data-text);
    font-size: 12px;
    text-transform: uppercase;
    top: -10px;
    position: absolute;
}.info-details .contact-support:nth-child(1) {
    transition-delay: 0.1s;
}.info-details .contact-support:nth-child(2) {
    transition-delay: 0.2s;
}.info-details .contact-support:nth-child(3) {
    transition-delay: 0.3s;
}.customer-feedback {
    overflow: hidden;
    padding: 7rem 0;
    background: linear-gradient(to bottom, rgb(201,231,219), #ffffff);
    position: relative;
}.customer-feedback::before {
    height: 100%;
    left: 0;
    position: absolute;
    transform: skewX(-15deg) translateX(-10%);
    z-index: 1;
    content: "";
    width: 35%;
    background: rgb(154,202,186,0.5);
    top: 0;
}.customer-feedback::after {
    position: absolute;
    background: rgb(106,174,157,0.5);
    transform: skewX(15deg) translateX(10%);
    z-index: 1;
    top: 0;
    height: 100%;
    content: "";
    width: 35%;
    opacity: 0.6;
    right: 0;
}.customer-feedback .container {
    z-index: 2;
    position: relative;
}.customer-feedback h2 {
    color: #000000;
    font-size: 31px;
    position: relative;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}.customer-feedback h2::after {
    height: 5px;
    width: 60px;
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    background: rgb(154,202,186);
    bottom: -15px;
    left: 50%;
    content: "";
    transform: translateX(-50%);
}.customer-feedback .testimonials-hub {
    flex-direction: column;
    max-width: 800px;
    position: relative;
    gap: 3rem;
    display: flex;
    margin: 0 auto;
}.customer-feedback .testimonials-hub::before {
    left: 50%;
    height: 100%;
    top: 0;
    z-index: 1;
    position: absolute;
    background: linear-gradient(to bottom, rgb(154,202,186), rgb(106,174,157));
    transform: translateX(-50%);
    content: "";
    width: 4px;
}.customer-feedback .feedback-cloud {
    width: 85%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 30px;
    background: #ffffff;
    position: relative;
    padding: 2rem;
    z-index: 2;
}.customer-feedback .feedback-cloud::before {
    top: 30px;
    position: absolute;
    background: rgb(154,202,186);
    border-radius: 50%;
    content: "";
    width: 20px;
    z-index: 3;
    height: 20px;
}.customer-feedback .feedback-cloud::after {
    height: 3px;
    top: 39px;
    transition: all 0.4s ease;
    background: rgb(154,202,186,0.5);
    position: absolute;
    z-index: 2;
    content: "";
}.customer-feedback .feedback-cloud:nth-child(odd) {
    transform: translateX(-30px);
    align-self: flex-start;
}.customer-feedback .feedback-cloud:nth-child(odd)::before {
    right: -10px;
}.customer-feedback .feedback-cloud:nth-child(odd)::after {
    right: -30px;
    width: 30px;
}.customer-feedback .feedback-cloud:nth-child(even) {
    align-self: flex-end;
    transform: translateX(30px);
}.customer-feedback .feedback-cloud:nth-child(even)::before {
    left: -10px;
}.customer-feedback .feedback-cloud:nth-child(even)::after {
    width: 30px;
    left: -30px;
}.customer-feedback .feedback-cloud:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}.customer-feedback .feedback-cloud:nth-child(odd):hover::after {
    width: 40px;
    right: -40px;
}.customer-feedback .feedback-cloud:nth-child(even):hover::after {
    width: 40px;
    left: -40px;
}.customer-feedback .feedback-cloud img {
    border-radius: 50%;
    position: relative;
    border: 3px solid #ffffff;
    height: 70px;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: all 0.4s ease;
    z-index: 2;
    width: 70px;
}.customer-feedback .feedback-cloud:nth-child(even) img {
    align-self: flex-end;
}.customer-feedback .feedback-cloud:hover img {
    border-color: rgb(154,202,186,0.5);
    transform: scale(1.1);
}.customer-feedback .feedback-cloud p {
    font-family: Arial, sans-serif;
    margin: 1rem 0 0;
    color: #000000;
    font-size: calc(12px * 1.1);
    font-weight: 600;
    transition: all 0.3s ease;
}.customer-feedback .feedback-cloud:nth-child(even) p {
    text-align: right;
}.customer-feedback .feedback-cloud .description {
    position: relative;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    font-size: 12px;
}.customer-feedback .feedback-cloud .description::before {
    content: "";
    height: 2px;
    position: absolute;
    background: rgb(106,174,157,0.5);
    transition: all 0.3s ease;
    width: 40px;
    top: 0;
}.customer-feedback .feedback-cloud:nth-child(odd) .description::before {
    left: 0;
}.customer-feedback .feedback-cloud:nth-child(even) .description::before {
    right: 0;
}.customer-feedback .feedback-cloud:hover .description::before {
    background: rgb(154,202,186);
    width: 60px;
}

@media (max-width: 991px) {.customer-feedback {
    padding: 5rem 0;
}.customer-feedback h2 {
    margin-bottom: 4rem;
}.customer-feedback .feedback-cloud {
    width: 80%;
}
}

@media (max-width: 767px) {.customer-feedback {
    padding: 4rem 0;
}.customer-feedback::before,
    .customer-feedback::after {
    width: 50%;
}.customer-feedback h2 {
    font-size: calc(31px * 0.9);
    margin-bottom: 3.5rem;
}.customer-feedback .testimonials-hub {
    gap: 2.5rem;
}.customer-feedback .feedback-cloud,
    .customer-feedback .feedback-cloud:nth-child(odd),
    .customer-feedback .feedback-cloud:nth-child(even) {
    width: 90%;
    align-self: center;
    transform: none;
}.customer-feedback .feedback-cloud::before {
    display: none;
}.customer-feedback .feedback-cloud::after {
    display: none;
}.customer-feedback .feedback-cloud p,
    .customer-feedback .feedback-cloud:nth-child(even) p {
    text-align: center;
}.customer-feedback .feedback-cloud img,
    .customer-feedback .feedback-cloud:nth-child(even) img {
    align-self: center;
}.customer-feedback .feedback-cloud .description::before,
    .customer-feedback .feedback-cloud:nth-child(odd) .description::before,
    .customer-feedback .feedback-cloud:nth-child(even) .description::before {
    transform: translateX(-50%);
    left: 50%;
}
}

@media (max-width: 480px) {.customer-feedback {
    padding: 3.5rem 0;
}.customer-feedback h2 {
    font-size: calc(31px * 0.8);
}.customer-feedback .testimonials-hub {
    gap: 2rem;
}.customer-feedback .feedback-cloud {
    padding: 1.5rem;
}.customer-feedback .feedback-cloud img {
    width: 60px;
    height: 60px;
}}.cookieNotificationAlert {
    z-index: 1050;
    left: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 90%;
    align-items: center;
    font-family: Arial, sans-serif;
    bottom: 20px;
    display: flex;
    transform: translateX(-50%);
    max-width: 600px;
    flex-direction: column;
    position: fixed;
    background: rgb(201,231,219);
    padding: 20px;
    border-radius: 16px;
}.cookies-overview {
    z-index: 1;
    align-items: center;
    flex-direction: column;
    display: flex;
}.gdpr-banner {
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}.gdpr-banner svg, .gdpr-banner svg path, .gdpr-banner img {
    fill: rgb(154,202,186);
    height: 80px;
    width: 80px;
}@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.cookieNotificationAlert h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(154,202,186);
}.cookieNotificationAlert p {
    color: #000000;
    font-size: 14px;
    margin-bottom: 20px;
}.consent-box {
    display: inline-block;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    cursor: pointer;
    width: calc(50% - 10px);
    font-size: 19px;
    border-radius: 10px;
    background: rgb(154,202,186);
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    margin: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}.consent-box:hover {
    background: rgb(106,174,157);
    transform: translateY(-3px);
}.cookie_button.cookie-disclaimer {
    background: rgba(0, 0, 0, 0.5);
}.cookie_button.cookie-disclaimer:hover {
    background: rgb(106,174,157,0.5);
}.cookieNotificationAlert p a {
    color: rgb(154,202,186);
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}.cookieNotificationAlert p a:hover {
    color: rgb(106,174,157);
}
@media only screen and (max-width: 600px) {.cookieNotificationAlert {
    bottom: 0;
    border-radius: 0;
    left: 0;
    width: 100%;
    transform: none;
}.cookies-overview {
    padding: 15px;
}.gdpr-banner svg {
    height: 50px;
    width: 50px;
}.cookieNotificationAlert h5 {
    font-size: calc(18px - 2px);
}.cookieNotificationAlert p {
    font-size: calc(14px - 2px);
}.consent-box {
    font-size: calc(19px - 2px);
    width: calc(100% - 10px);
    padding: 8px 16px;
}}
#dataConsentBanner {
    display: none;
}#dataConsentBanner:checked ~ .cookieNotificationAlert {
    opacity: 0;
    visibility: hidden;
}.company-info {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}.company-info::before {
    content: "";
    background-color: rgba(21, 25, 40, 0.85);
    z-index: 1;
    width: 100%;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
}.company-info::after {
    height: 200%;
    content: "";
    position: absolute;
    width: 70%;
    right: -25%;
    z-index: 2;
    transform: rotate(15deg);
    background: linear-gradient(135deg, rgb(154,202,186,0.5) 0%, transparent 65%);
    top: -50%;
}.company-info .container {
    position: relative;
    margin: 0 auto;
    z-index: 5;
    max-width: 1200px;
    padding: 0 2rem;
}.company-info .caption-box {
    transform: perspective(1000px) rotateY(-2deg);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 3rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
}.company-info .caption-box:hover {
    transform: perspective(1000px) rotateY(0deg);
}.company-info h1 {
    position: relative;
    color: #ffffff;
    transform: translateX(-5px);
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
    transition: transform 0.5s ease;
    font-size: 45px;
}.company-info h1::after {
    position: absolute;
    width: 80px;
    content: "";
    bottom: -15px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 3px;
    background: linear-gradient(to right, rgb(154,202,186), rgb(106,174,157));
    transform: scaleX(0.8);
    left: 0;
    transform-origin: left center;
}.company-info .caption-box:hover h1 {
    transform: translateX(0);
}.company-info .caption-box:hover h1::after {
    transform: scaleX(1);
}.company-info ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.company-info li {
    margin-bottom: 1.5rem;
}.company-info h4 {
    font-size: calc(24px * 1.1);
    font-weight: 600;
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
    padding-left: 2rem;
    font-family: Arial, sans-serif;
    color: rgb(106,174,157);
}.company-info h4::before {
    content: "";
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    transition: transform 0.3s ease;
    left: 0;
    background: rgb(154,202,186);
    top: 50%;
    position: absolute;
    height: 12px;
}.company-info li:hover h4::before {
    transform: translateY(-50%) rotate(225deg);
}.company-info span {
    line-height: 1.8;
    padding-left: 2rem;
    transition: opacity 0.3s ease;
    hyphens: auto;
    display: block;
    text-align: justify;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 13px;
    color: #ffffff;
    max-width: 90%;
    opacity: 0.9;
}.company-info span::first-letter {
    color: rgb(154,202,186);
    font-size: 200%;
    margin-right: 2px;
    font-weight: 700;
}.company-info li:hover span {
    opacity: 1;
}.company-info span::before {
    top: 0.7em;
    position: absolute;
    content: "";
    left: 0;
    height: calc(100% - 1.4em);
    background: linear-gradient(to bottom, rgb(154,202,186,0.5), transparent);
    width: 1px;
}

@media (min-width: 992px) {.company-info {
    padding: 8rem 0;
}.company-info .caption-box {
    margin-left: 5%;
    width: 90%;
    padding: 4rem;
}.company-info h1 {
    font-size: calc(45px * 1.2);
    margin-bottom: 3rem;
}.company-info h1::after {
    height: 4px;
    width: 120px;
}.company-info span {
    padding-left: 3rem;
    line-height: 1.9;
    font-size: calc(13px * 1.05);
    max-width: 85%;
}.company-info h4 {
    font-size: calc(24px * 1.2);
    padding-left: 3rem;
}.company-info h4::before {
    width: 15px;
    height: 15px;
}
}

@media (max-width: 991px) {.company-info::after {
    right: -50%;
    width: 100%;
}.company-info .caption-box {
    transform: perspective(1000px) rotateY(-1deg);
}
}

@media (max-width: 768px) {.company-info {
    padding: 4rem 0;
}.company-info .caption-box {
    transform: none;
    padding: 2rem;
}.company-info h1 {
    font-size: calc(45px * 0.9);
    margin-bottom: 2rem;
}.company-info span {
    font-size: calc(13px * 0.95);
    line-height: 1.7;
    max-width: 100%;
    padding-left: 1.5rem;
}.company-info h4 {
    padding-left: 1.5rem;
}.company-info h1::after {
    height: 3px;
    width: 60px;
}
}

@media (max-width: 576px) {.company-info {
    padding: 3rem 0;
}.company-info .container {
    padding: 0 1rem;
}.company-info .caption-box {
    padding: 1.5rem;
}.company-info h1 {
    font-size: calc(45px * 0.8);
    margin-bottom: 1.5rem;
}.company-info span {
    padding-left: 1rem;
    line-height: 1.6;
    font-size: calc(13px * 0.9);
}.company-info h4 {
    padding-left: 1rem;
    font-size: calc(24px * 0.9);
}.company-info h4::before {
    width: 8px;
    height: 8px;
}.company-info h1::after {
    height: 2px;
    width: 50px;
}
}

@media (hover: none) {.company-info .caption-box {
    transform: none !important;
}.company-info h1 {
    transform: none;
}.company-info h1::after {
    transform: scaleX(1);
}
}