﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}.app-template-cta {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    height: 30px;
    width: 30px;
}.container {
    max-width: 100%;
    width: 1163px;
    margin: auto;
}.app-page-top {
    flex: 1 0 auto;
}.app-outer-container {
    min-height: 100%;
    flex-direction: column;
    display: flex;
    height: 100%;
}header,footer {
    width: 100%;
}html,body {
    color: #000000;
    height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: auto;
    min-height: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.app-thanksPoint {
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(145deg, rgb(199,134,137,0.5), rgb(218,176,177,0.5));
}.app-thanksPoint::before {
    position: absolute;
    background: radial-gradient(circle at center, #ffffff 0%, transparent 70%);
    content: "";
    z-index: -1;
    transform: rotate(25deg);
    right: -10%;
    width: 70%;
    height: 70%;
    top: -10%;
    opacity: 0.07;
    animation: float 20s infinite alternate ease-in-out;
}.app-thanksPoint::after {
    opacity: 0.05;
    bottom: -5%;
    z-index: -1;
    height: 50%;
    animation: float 15s infinite alternate-reverse ease-in-out;
    width: 50%;
    left: -5%;
    background: radial-gradient(circle at center, #ffffff 0%, transparent 70%);
    content: "";
    transform: rotate(-15deg);
    position: absolute;
}.app-thanksPoint .container {
    position: relative;
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
}.app-thanksPoint .app-path-edu {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 2.5rem;
    transform: perspective(1000px) rotateX(2deg);
}.app-thanksPoint .app-path-edu:hover {
    transform: perspective(1000px) rotateX(0deg);
}.app-thanksPoint .app-path-edu > div:first-child {
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05),
                0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 2.5rem;
    background: #ffffff;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}.app-thanksPoint .app-path-edu > div:first-child::before {
    transition: transform 0.7s ease;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(218,176,177), rgb(199,134,137));
    position: absolute;
    height: 5px;
    content: "";
    left: 0;
    z-index: 3;
    transform: scaleX(0);
    right: 0;
    top: 0;
}.app-thanksPoint .app-path-edu:hover > div:first-child::before {
    transform: scaleX(1);
}.app-thanksPoint .app-path-edu > div:last-child {
    background: linear-gradient(to right bottom, 
                rgba(255, 255, 255, 0.9),
                rgba(255, 255, 255, 0.7));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05),
                0 5px 15px rgba(0, 0, 0, 0.02);
    transform: translateY(-10px);
    position: relative;
    backdrop-filter: blur(10px);
    padding: 2.5rem 3rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}.app-thanksPoint .app-path-edu:hover > div:last-child {
    transform: translateY(0);
}.app-thanksPoint h5 {
    color: rgb(218,176,177);
    font-weight: 700;
    display: inline-block;
    position: relative;
    line-height: 1.4;
    margin: 0;
    font-size: 18px;
}.app-thanksPoint h5::after {
    bottom: -10px;
    content: "";
    width: 60px;
    transition: width 0.4s ease;
    left: 0;
    height: 3px;
    position: absolute;
    background: rgb(199,134,137);
}.app-thanksPoint .app-path-edu:hover h5::after {
    width: 100%;
}.app-thanksPoint a {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}.app-thanksPoint a:hover {
    transform: translateX(5px);
}.app-thanksPoint p {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    position: relative;
}.app-thanksPoint a::before {
    position: absolute;
    content: "";
    opacity: 0;
    height: 0.5rem;
    top: 0.5rem;
    width: 0.5rem;
    transition: all 0.3s ease;
    background: rgb(199,134,137);
    left: -1.5rem;
}.app-thanksPoint a:hover::before {
    opacity: 1;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(2%, 2%) rotate(5deg);
    }
    100% {
        transform: translate(-2%, -1%) rotate(-5deg);
    }
}

@media (min-width: 768px) {.app-thanksPoint {
    padding: 8rem 0;
}.app-thanksPoint .app-path-edu {
    gap: 0;
    grid-template-columns: 1fr 1.2fr;
}.app-thanksPoint .app-path-edu > div:first-child {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    transform: translateX(5%);
    z-index: 2;
}.app-thanksPoint .app-path-edu > div:last-child {
    margin-left: -5%;
    transform: translateY(25px);
    z-index: 1;
    padding-left: 10%;
}.app-thanksPoint .app-path-edu:hover > div:last-child {
    transform: translateY(15px);
}.app-thanksPoint h5 {
    font-size: calc(18px * 1.1);
}.app-thanksPoint p {
    font-size: calc(17px * 1.05);
}
}

@media (min-width: 992px) {.app-thanksPoint {
    padding: 10rem 0;
}.app-thanksPoint .app-path-edu {
    grid-template-columns: 0.9fr 1.3fr;
}.app-thanksPoint .app-path-edu > div:first-child {
    padding: 3rem;
    transform: translateX(10%);
}.app-thanksPoint .app-path-edu > div:last-child {
    margin-left: -10%;
    padding-left: 15%;
    transform: translateY(35px);
}.app-thanksPoint .app-path-edu:hover > div:last-child {
    transform: translateY(25px);
}.app-thanksPoint h5 {
    font-size: calc(18px * 1.2);
}
}

@media (max-width: 767px) {.app-thanksPoint {
    padding: 4rem 0;
}.app-thanksPoint .app-path-edu > div:first-child,
    .app-thanksPoint .app-path-edu > div:last-child {
    padding: 2rem;
}.app-thanksPoint h5 {
    font-size: calc(18px * 0.9);
}.app-thanksPoint p {
    font-size: calc(17px * 0.95);
}}.app-plan-container {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}.app-plan-container::before {
    z-index: 1;
    bottom: 0;
    right: 0;
    content: "";
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(218,176,177,0.5) 100%);
    left: 0;
    backdrop-filter: blur(8px);
    top: 0;
    position: absolute;
}.app-plan-container .container {
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
}.app-plan-container .app-class-deals {
    display: flex;
    align-items: center;
    flex-direction: column;
}.app-plan-container h2 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    animation: fadeSlideDown 0.8s ease-out forwards;
    transform: translateY(0);
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}.app-plan-container h2::after {
    width: 80px;
    animation: expandLine 1.2s 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    height: 3px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    background: rgb(218,176,177);
    content: "";
    position: absolute;
    bottom: -15px;
}.app-plan-container .app-member-plans {
    max-width: 700px;
    line-height: 1.6;
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    text-align: center;
    animation: fadeSlideUp 0.8s 0.3s ease-out forwards;
    font-size: calc(12px * 1.1);
    margin: 0 auto 60px;
}.app-plan-container .app-price-sheet {
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    display: grid;
    list-style: none;
    perspective: 1000px;
    margin: 0;
}.app-plan-container .app-price-sheet li {
    animation: cardReveal 0.7s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
}.app-plan-container .app-price-sheet li:nth-child(1) {
    animation-delay: 0.4s;
}.app-plan-container .app-price-sheet li:nth-child(2) {
    animation-delay: 0.6s;
}.app-plan-container .app-price-sheet li:nth-child(3) {
    animation-delay: 0.8s;
}.app-plan-container .app-price-sheet li:nth-child(4) {
    animation-delay: 1s;
}.app-plan-container .app-fee-chart {
    transition: transform 0.45s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform;
    color: #000000;
    display: block;
    text-decoration: none;
    height: 100%;
}.app-plan-container .app-fee-chart:hover {
    transform: translateY(-12px);
}.app-plan-container .app-program-rate {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
    position: relative;
    background: #ffffff;
    border-radius: 23px;
    height: 100%;
    transition: box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.2, 1, 0.3, 1);
    overflow: hidden;
}.app-plan-container .app-fee-chart:hover .app-program-rate {
    box-shadow: 0 25px 45px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.12);
}.app-plan-container .app-program-rate::before {
    transition: transform 0.5s cubic-bezier(0.3, 0.7, 0.4, 1.5);
    top: 0;
    content: "";
    width: 100%;
    height: 6px;
    position: absolute;
    background: linear-gradient(90deg, rgb(218,176,177) 0%, rgb(199,134,137) 100%);
    transform-origin: right;
    left: 0;
    transform: scaleX(0);
}.app-plan-container .app-fee-chart:hover .app-program-rate::before {
    transform: scaleX(1);
    transform-origin: left;
}.app-plan-container .app-bundle-rate {
    padding: 35px 30px;
    position: relative;
}.app-plan-container .app-bundle-rate h4 {
    margin-bottom: 20px;
    transition: color 0.35s ease;
    padding-bottom: 15px;
    font-weight: 700;
    font-size: calc(22px * 1.1);
    position: relative;
    color: #000000;
}.app-plan-container .app-fee-chart:hover .app-bundle-rate h4 {
    color: rgb(218,176,177);
}.app-plan-container .app-bundle-rate h4::after {
    content: "";
    bottom: 0;
    left: 0;
    width: 50px;
    background: rgb(218,176,177,0.5);
    height: 2px;
    position: absolute;
    transition: width 0.35s ease, background 0.35s ease;
}.app-plan-container .app-fee-chart:hover .app-bundle-rate h4::after {
    width: 75px;
    background: rgb(218,176,177);
}.app-plan-container .app-bundle-rate p {
    padding-right: 15px;
    line-height: 1.7;
    max-height: 150px;
    overflow-y: auto;
    font-size: 12px;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
}.app-plan-container .app-bundle-rate p::-webkit-scrollbar {
    width: 6px;
}.app-plan-container .app-bundle-rate p::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}.app-plan-container .app-bundle-rate p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    transition: background 0.3s ease;
    background: rgb(218,176,177,0.5);
}.app-plan-container .app-fee-chart:hover .app-bundle-rate p::-webkit-scrollbar-thumb {
    background: rgb(218,176,177);
}.app-plan-container .app-learning-deals {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(199,134,137,0.5) 0%, rgb(218,176,177) 100%);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    align-items: center;
    border-radius: 10px;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: 700;
    padding: 12px 20px;
    color: #ffffff;
    font-size: calc(22px * 1.2);
    justify-content: center;
    position: relative;
}.app-plan-container .app-fee-chart:hover .app-learning-deals {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}.app-plan-container .app-learning-deals::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
    height: 100%;
    width: 100%;
    position: absolute;
    transform: translateX(-100%);
    content: "";
}.app-plan-container .app-fee-chart:hover .app-learning-deals::before {
    transform: translateX(100%);
}

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

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

@keyframes expandLine {
    from {
        transform: translateX(-50%) scaleX(0);
    }
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@media (max-width: 1200px) {.app-plan-container {
    padding: 100px 0;
}.app-plan-container .app-price-sheet {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}
}

@media (max-width: 991px) {.app-plan-container {
    padding: 80px 0;
}.app-plan-container h2 {
    font-size: calc(34px * 0.9);
}.app-plan-container .app-member-plans {
    font-size: 12px;
    margin-bottom: 50px;
}.app-plan-container .app-price-sheet {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}.app-plan-container .app-bundle-rate {
    padding: 25px 20px;
}
}

@media (max-width: 767px) {.app-plan-container {
    padding: 60px 0;
}.app-plan-container h2 {
    font-size: calc(34px * 0.8);
}.app-plan-container .app-member-plans {
    margin-bottom: 40px;
    font-size: calc(12px * 0.95);
}.app-plan-container .app-price-sheet {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 450px;
}.app-plan-container .app-bundle-rate p {
    max-height: none;
}
}

@media (max-width: 480px) {.app-plan-container {
    padding: 50px 0;
}.app-plan-container h2 {
    font-size: calc(34px * 0.7);
}.app-plan-container .app-bundle-rate {
    padding: 20px 18px;
}.app-plan-container .app-learning-deals {
    font-size: calc(22px * 1.1);
    padding: 10px 15px;
}}footer {
    position: relative;
    width: 100%;
}footer .app-template-cta {
    position: relative;
    color: #ffffff;
    padding: 80px 0 30px;
    background: linear-gradient(135deg, rgb(218,176,177), rgb(199,134,137));
    font-family: Arial, sans-serif;
}footer .app-template-cta::before {
    position: absolute;
    width: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
                      radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
                      radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 15%);
    top: 0;
    content: "";
    left: 0;
    height: 100%;
}footer .app-price-table {
    position: relative;
    z-index: 1;
}footer .app-get-contactus {
    gap: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}footer .info_item {
    height: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    z-index: 1;
    background-color: rgb(218,176,177,0.5);
    align-items: center;
    flex: 0 1 220px;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}footer .info_item:nth-child(1) {
    transform: translateY(-20px);
}footer .info_item:nth-child(2) {
    transform: translateY(20px);
}footer .info_item:nth-child(3) {
    transform: translateY(-10px);
}footer .info_item:nth-child(4) {
    transform: translateY(10px);
}footer .info_item:hover {
    z-index: 2;
    transform: scale(1.05) translateY(0);
    background-color: rgb(199,134,137,0.5);
}footer .info_item svg {
    height: 24px;
    flex-shrink: 0;
    margin-right: 10px;
    fill: #ffffff;
    width: 24px;
}footer .info_item p,
footer .info_item a {
    max-width: 80%;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
}footer .info_item a:hover {
    text-decoration: underline;
}footer .text_main_holder {
    flex-wrap: wrap;
    gap: 30px;
    display: flex;
    position: relative;
    justify-content: center;
}footer .app-nav-pagebar, footer .app-top-sitewrap, footer .subscribe_holder {
    padding: 30px;
    background-color: rgb(218,176,177,0.5);
    position: relative;
    flex: 1 1 300px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    max-width: 400px;
    flex-direction: column;
    border-radius: 17px;
}footer .app-nav-pagebar:hover, footer .app-top-sitewrap:hover, footer .subscribe_holder:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    background-color: rgb(199,134,137,0.5);
}footer .app-nav-pagebar::before, footer .app-top-sitewrap::before, footer .subscribe_holder::before {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    z-index: -1;
    opacity: 0.1;
    content: "";
    position: absolute;
}footer .app-nav-pagebar::before {
    background-color: rgb(218,176,177);
    top: -50px;
    left: -50px;
}footer .app-top-sitewrap::before {
    background-color: rgb(199,134,137);
    right: -50px;
    bottom: -50px;
}footer .subscribe_holder::before {
    left: -50px;
    background-color: rgb(218,176,177);
    bottom: -50px;
}footer .app-nav-pagebar svg {
    margin-bottom: 20px;
    height: 50px;
    filter: brightness(0) invert(1);
    width: auto;
}footer .app-art-portal {
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
    font-size: 16px;
    line-height: 1.6;
}footer .app-top-sitewrap h5, footer .subscribe_holder h5 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}footer .app-top-sitewrap h5::after, footer .subscribe_holder h5::after {
    position: absolute;
    transition: width 0.3s ease;
    transform: translateX(-50%);
    width: 40px;
    left: 50%;
    bottom: -8px;
    content: "";
    background-color: #ffffff;
    height: 2px;
}footer .app-top-sitewrap:hover h5::after, footer .subscribe_holder:hover h5::after {
    width: 80px;
}footer .app-site-start {
    gap: 10px;
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    max-width: 300px;
}footer .app-site-start a {
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 12px;
    background-color: rgb(218,176,177,0.5);
}footer .app-site-start a:hover {
    transform: translateY(-3px);
    background-color: rgb(199,134,137,0.5);
}footer .subscribe_holder p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 12px;
}footer .input_holder {
    display: flex;
    width: 100%;
    gap: 15px;
    flex-direction: column;
    max-width: 300px;
    align-items: center;
}footer .input_holder input[type="email"] {
    transition: all 0.3s ease;
    border: none;
    font-size: 12px;
    width: 100%;
    color: #ffffff;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    text-align: center;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgb(218,176,177,0.5);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .app-email-section {
    background-color: rgb(218,176,177);
    cursor: pointer;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease;
    border: none;
    color: #ffffff;
    font-size: 14px;
}footer .app-email-section:hover {
    transform: translateY(-3px);
    background-color: rgb(199,134,137);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}footer .app-carbon-cta {
    margin-top: 60px;
    position: relative;
    text-align: center;
}footer .app-progress-bar {
    padding: 8px 20px;
    background-color: rgb(218,176,177,0.5);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: inline-block;
}

@media (min-width: 992px) {footer .text_main_holder {
    flex-wrap: nowrap;
}
}

@media (max-width: 991px) {footer .info_item {
    height: 180px;
    flex: 0 1 180px;
}footer .info_item:nth-child(1),
    footer .info_item:nth-child(2),
    footer .info_item:nth-child(3),
    footer .info_item:nth-child(4) {
    transform: none;
}
}

@media (max-width: 767px) {footer .app-template-cta {
    padding: 60px 0 30px;
}footer .app-get-contactus {
    margin-bottom: 40px;
    flex-direction: column;
}footer .info_item {
    flex: 0 1 100px;
    height: 100px;
    padding: 15px;
}footer .app-nav-pagebar, footer .app-top-sitewrap, footer .subscribe_holder {
    padding: 25px 20px;
}footer .app-carbon-cta {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .app-template-cta {
    padding: 50px 0 20px;
}footer .info_item {
    flex: 0 1 90px;
    height: 90px;
}footer .info_item p, footer .info_item a {
    font-size: calc(12px - 1px);
}footer .app-top-sitewrap h5, footer .subscribe_holder h5 {
    font-size: calc(18px - 2px);
}footer .app-site-start a {
    padding: 6px 12px;
    font-size: calc(12px - 1px);
}footer .input_holder input[type="email"],
    footer .app-email-section {
    padding: 12px 15px;
}footer .app-progress-bar {
    padding: 6px 15px;
}}.app-study-method {
    background: linear-gradient(215deg, #000000 0%, rgb(218,176,177) 100%);
    padding: 6rem 0;
    display: flex;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    align-items: center;
}.app-study-method::before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    background: 
        linear-gradient(90deg, rgb(199,134,137,0.5) 1px, transparent 1px) 0 0 / 20px 100%,
        linear-gradient(0deg, rgb(199,134,137,0.5) 1px, transparent 1px) 0 0 / 100% 20px;
    height: 100%;
    width: 100%;
    opacity: 0.2;
}.app-study-method::after {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background: linear-gradient(45deg, rgb(218,176,177,0.5) 25%, transparent 25%, transparent 50%, rgb(218,176,177,0.5) 50%, rgb(218,176,177,0.5) 75%, transparent 75%, transparent);
    opacity: 0.05;
    animation: moveBackground 20s linear infinite;
    background-size: 30px 30px;
}@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

.app-study-method .app-path-edu {
    width: 100%;
    z-index: 5;
    position: relative;
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
}.app-study-method .app-textual-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(5px);
    width: 90%;
    overflow: hidden;
    border-radius: 0 27px 27px 0;
    padding: 3rem;
    position: relative;
    border-left: 4px solid rgb(199,134,137);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}.app-study-method .app-textual-box::before {
    width: 5px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    animation: scanline 2s linear infinite;
    background: linear-gradient(to bottom, rgb(199,134,137), rgb(218,176,177));
    content: '';
}@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.app-study-method .app-textual-box::after {
    animation: glitch 3s ease-in-out infinite alternate;
    top: 0;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    left: 0;
    content: '';
}@keyframes glitch {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.app-study-method h2 {
    padding-left: 1.5rem;
    color: #ffffff;
    font-size: 31px;
    position: relative;
    text-shadow: 
        2px 2px 0 rgb(199,134,137,0.5),
        -2px -2px 0 rgb(218,176,177,0.5);
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    display: inline-block;
    font-weight: 700;
}.app-study-method h2::before {
    position: absolute;
    left: 0;
    color: rgb(199,134,137);
    content: '>';
    animation: blink 1s step-end infinite;
}@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.app-study-method h2::after {
    content: '';
    height: 2px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(199,134,137), rgb(218,176,177));
    bottom: -10px;
    width: 100%;
}.app-study-method p {
    padding-left: 1.5rem;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    font-size: 15px;
    color: #ffffff;
}.app-study-method p::before {
    width: 3px;
    top: 0;
    background: rgb(199,134,137,0.5);
    left: 0;
    position: absolute;
    content: '';
    height: 100%;
}.app-study-method .app-textual-box::before,
.app-study-method .app-textual-box::after,
.app-study-method h2,
.app-study-method p {
    transition: all 0.3s ease;
}.app-study-method .app-textual-box:hover h2 {
    transform: translateX(5px);
    text-shadow: 
        3px 3px 0 rgb(199,134,137,0.5),
        -3px -3px 0 rgb(218,176,177,0.5);
}.app-study-method .app-textual-box:hover p {
    transform: translateX(5px);
}.app-study-method .app-textual-box:hover::before {
    animation-duration: 1s;
}.app-study-method .app-textual-box:hover::after {
    animation-duration: 1.5s;
}.app-study-method .app-textual-box::before,
.app-study-method h2::before {
    animation-play-state: running;
}.app-study-method::before {
    clip-path: polygon(
        0 0,
        100% 0,
        100% 85%,
        85% 100%,
        0 100%
    );
}

@media (max-width: 992px) {.app-study-method {
    min-height: 70vh;
    padding: 5rem 1.5rem;
}.app-study-method .app-textual-box {
    width: 90%;
    padding: 2.5rem;
}.app-study-method h2 {
    font-size: calc(31px * 0.9);
    margin-bottom: 1.8rem;
}.app-study-method p {
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 768px) {.app-study-method {
    padding: 4rem 1rem;
    min-height: auto;
}.app-study-method .app-textual-box {
    width: 100%;
    padding: 2rem;
}.app-study-method h2 {
    font-size: calc(31px * 0.8);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}.app-study-method h2::after {
    height: 1px;
}.app-study-method p {
    padding-left: 1.2rem;
}.app-study-method p::before {
    width: 2px;
}
}

@media (max-width: 576px) {.app-study-method {
    padding: 3rem 0.8rem;
}.app-study-method .app-textual-box {
    padding: 1.5rem;
}.app-study-method h2 {
    margin-bottom: 1.2rem;
    padding-left: 1rem;
    font-size: calc(31px * 0.7);
}.app-study-method p {
    font-size: calc(15px * 0.9);
    padding-left: 1rem;
}.app-study-method::before,
    .app-study-method::after {
    opacity: 0.15;
}.app-study-method .app-textual-box::before {
    animation-duration: 3s;
}}.app-primary-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: rgb(199,134,137);
    width: 100%;
}.app-primary-page::before {
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: 
        linear-gradient(0deg, #000000 0%, transparent 100%),
        radial-gradient(circle at 20% 80%, rgb(218,176,177,0.5) 0%, transparent 40%);
    z-index: 1;
    position: absolute;
    width: 100%;
}.app-primary-page .app-path-edu {
    height: 100vh;
    grid-template-columns: 1fr 1fr;
    z-index: 2;
    grid-template-rows: 1fr;
    display: grid;
    width: 100%;
    position: relative;
}.app-primary-page .app-start-entry {
    width: 100%;
    height: 100%;
    position: relative;
    grid-row: 1;
    grid-column: 1 / 3;
}.app-primary-page .app-start-entry input {
    display: none;
}.app-primary-page .app-class-online {
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}.app-primary-page .app-master-zone {
    position: absolute;
    z-index: 1;
    opacity: 0;
    inset: 0;
    transform: scale(1.2);
    transition: opacity 1.2s ease, transform 1.2s ease;
}.app-primary-page .app-master-zone img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: grayscale(0.3) contrast(1.1);
}.app-primary-page .app-start-entry input:nth-child(1):checked ~ .app-class-online .app-master-zone:nth-child(1),
.app-primary-page .app-start-entry input:nth-child(2):checked ~ .app-class-online .app-master-zone:nth-child(2),
.app-primary-page .app-start-entry input:nth-child(3):checked ~ .app-class-online .app-master-zone:nth-child(3),
.app-primary-page .app-start-entry input:nth-child(4):checked ~ .app-class-online .app-master-zone:nth-child(4),
.app-primary-page .app-start-entry input:nth-child(5):checked ~ .app-class-online .app-master-zone:nth-child(5),
.app-primary-page .app-start-entry input:nth-child(6):checked ~ .app-class-online .app-master-zone:nth-child(6),
.app-primary-page .app-start-entry input:nth-child(7):checked ~ .app-class-online .app-master-zone:nth-child(7),
.app-primary-page .app-start-entry input:nth-child(8):checked ~ .app-class-online .app-master-zone:nth-child(8),
.app-primary-page .app-start-entry input:nth-child(9):checked ~ .app-class-online .app-master-zone:nth-child(9),
.app-primary-page .app-start-entry input:nth-child(10):checked ~ .app-class-online .app-master-zone:nth-child(10) {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}.app-primary-page .app-start-begin {
    display: flex;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}.app-primary-page .app-start-begin label {
    position: relative;
    display: block;
    opacity: 0.5;
    height: 5px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
}.app-primary-page .app-start-begin label::before {
    width: 0;
    position: absolute;
    content: "";
    transition: width 0.5s ease;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(218,176,177);
}.app-primary-page .app-start-entry input:nth-child(1):checked ~ .app-start-begin label:nth-child(1)::before,
.app-primary-page .app-start-entry input:nth-child(2):checked ~ .app-start-begin label:nth-child(2)::before,
.app-primary-page .app-start-entry input:nth-child(3):checked ~ .app-start-begin label:nth-child(3)::before,
.app-primary-page .app-start-entry input:nth-child(4):checked ~ .app-start-begin label:nth-child(4)::before,
.app-primary-page .app-start-entry input:nth-child(5):checked ~ .app-start-begin label:nth-child(5)::before,
.app-primary-page .app-start-entry input:nth-child(6):checked ~ .app-start-begin label:nth-child(6)::before,
.app-primary-page .app-start-entry input:nth-child(7):checked ~ .app-start-begin label:nth-child(7)::before,
.app-primary-page .app-start-entry input:nth-child(8):checked ~ .app-start-begin label:nth-child(8)::before,
.app-primary-page .app-start-entry input:nth-child(9):checked ~ .app-start-begin label:nth-child(9)::before,
.app-primary-page .app-start-entry input:nth-child(10):checked ~ .app-start-begin label:nth-child(10)::before {
    width: 100%;
}.app-primary-page .app-start-entry input:nth-child(1):checked ~ .app-start-begin label:nth-child(1),
.app-primary-page .app-start-entry input:nth-child(2):checked ~ .app-start-begin label:nth-child(2),
.app-primary-page .app-start-entry input:nth-child(3):checked ~ .app-start-begin label:nth-child(3),
.app-primary-page .app-start-entry input:nth-child(4):checked ~ .app-start-begin label:nth-child(4),
.app-primary-page .app-start-entry input:nth-child(5):checked ~ .app-start-begin label:nth-child(5),
.app-primary-page .app-start-entry input:nth-child(6):checked ~ .app-start-begin label:nth-child(6),
.app-primary-page .app-start-entry input:nth-child(7):checked ~ .app-start-begin label:nth-child(7),
.app-primary-page .app-start-entry input:nth-child(8):checked ~ .app-start-begin label:nth-child(8),
.app-primary-page .app-start-entry input:nth-child(9):checked ~ .app-start-begin label:nth-child(9),
.app-primary-page .app-start-entry input:nth-child(10):checked ~ .app-start-begin label:nth-child(10) {
    width: 50px;
    opacity: 1;
}.app-primary-page .app-textual-box {
    padding: 40px;
    bottom: 15%;
    position: absolute;
    left: 10%;
    backdrop-filter: blur(8px);
    border-left: 4px solid rgb(218,176,177);
    z-index: 5;
    background: rgba(0, 0, 0, 0.7);
    width: 45%;
}.app-primary-page .app-textual-box .container {
    padding: 0;
    width: 100%;
}.app-primary-page .app-textual-box h1 {
    margin-bottom: 15px;
    font-size: 40px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 700;
}.app-primary-page .app-textual-box h3 {
    color: rgb(218,176,177);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 19px;
}.app-primary-page .app-textual-box p {
    margin-bottom: 0;
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.7;
    color: #ffffff;
}.app-primary-page .app-master-zone::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        135deg,
        transparent 60%,
        rgb(199,134,137,0.5) 100%
    );
    z-index: 1;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-primary-page .app-textual-box h1 {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    transform: translateY(20px);
}.app-primary-page .app-textual-box h3 {
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}.app-primary-page .app-textual-box p {
    animation: fadeInUp 0.6s ease-out 0.9s forwards;
    opacity: 0;
    transform: translateY(20px);
}.app-primary-page .app-textual-box::before {
    height: 20px;
    right: 0;
    width: 20px;
    content: "";
    position: absolute;
    top: 0;
    border-right: 2px solid rgb(218,176,177);
    border-top: 2px solid rgb(218,176,177);
}.app-primary-page .app-textual-box::after {
    position: absolute;
    content: "";
    border-left: 2px solid rgb(218,176,177);
    border-bottom: 2px solid rgb(218,176,177);
    height: 20px;
    left: 0;
    bottom: 0;
    width: 20px;
}

@media (max-width: 1200px) {.app-primary-page .app-textual-box {
    width: 50%;
}
}

@media (max-width: 992px) {.app-primary-page .app-textual-box {
    padding: 30px;
    width: 60%;
    left: 5%;
}.app-primary-page .app-textual-box h1 {
    font-size: calc(40px * 0.9);
}.app-primary-page .app-start-begin {
    right: 30px;
}.app-primary-page .app-start-begin label {
    width: 30px;
}.app-primary-page .app-start-entry input:checked ~ .app-start-begin label {
    width: 45px;
}
}

@media (max-width: 768px) {.app-primary-page .app-path-edu {
    display: block;
}.app-primary-page .app-textual-box {
    bottom: 10%;
    transform: translateX(-50%);
    width: 80%;
    left: 50%;
    padding: 25px;
}.app-primary-page .app-textual-box h1 {
    font-size: calc(40px * 0.8);
}.app-primary-page .app-textual-box h3 {
    font-size: calc(19px * 0.9);
    margin-bottom: 15px;
}.app-primary-page .app-start-begin {
    top: auto;
    bottom: 25%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    left: 50%;
}
}

@media (max-width: 576px) {.app-primary-page .app-textual-box {
    padding: 20px;
    bottom: 15%;
    width: 90%;
}.app-primary-page .app-textual-box h1 {
    font-size: calc(40px * 0.7);
    margin-bottom: 10px;
}.app-primary-page .app-textual-box h3 {
    margin-bottom: 10px;
    font-size: calc(19px * 0.8);
}.app-primary-page .app-textual-box p {
    line-height: 1.5;
    font-size: calc(12px * 0.9);
}.app-primary-page .app-start-begin {
    bottom: 30%;
    gap: 8px;
}.app-primary-page .app-start-begin label {
    height: 4px;
    width: 25px;
}.app-primary-page .app-start-entry input:checked ~ .app-start-begin label {
    width: 35px;
}.app-primary-page .app-textual-box::before,
    .app-primary-page .app-textual-box::after {
    height: 15px;
    width: 15px;
}}

.app-primary-page .app-start-entry input:checked ~ .app-class-online .app-master-zone img {
    animation: slowZoom 20s linear infinite alternate;
}@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}.app-launch-now {
    overflow: hidden;
    background: rgb(236,215,216);
    padding: 140px 0;
    position: relative;
}.app-launch-now::before {
    width: 50%;
    top: -50%;
    height: 200%;
    position: absolute;
    background: rgb(218,176,177,0.5);
    z-index: 1;
    content: '';
    right: 0;
    transform: skewX(-20deg);
    opacity: 0.1;
}.app-launch-now::after {
    top: -50%;
    right: 15%;
    z-index: 1;
    transform: skewX(-20deg);
    width: 30%;
    height: 200%;
    content: '';
    opacity: 0.1;
    background: rgb(199,134,137,0.5);
    position: absolute;
}.app-launch-now .app-path-edu {
    flex-direction: row;
    display: flex;
    position: relative;
    z-index: 10;
    align-items: flex-start;
}.app-launch-now .container p {
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    position: relative;
    margin: 0;
    z-index: 5;
    flex: 0 0 60%;
    padding-right: 60px;
    font-size: 28px;
}.app-launch-now .app-feedback-support {
    text-decoration: none;
    border-radius: 60px 0 60px 60px;
    height: 120px;
    font-weight: 600;
    transition: all 0.4s ease;
    font-size: 14px;
    color: #000000;
    position: relative;
    flex: 0 0 35%;
    z-index: 5;
    display: flex;
    overflow: hidden;
    justify-content: center;
    background: #ffffff;
    align-items: center;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
}.app-launch-now .app-feedback-support::before {
    background: rgb(218,176,177);
    top: 0;
    width: 20px;
    right: 0;
    content: '';
    position: absolute;
    height: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}.app-launch-now .app-feedback-support:hover {
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    color: #ffffff;
}.app-launch-now .app-feedback-support:hover::before {
    border-radius: 60px 0 60px 60px;
    width: 100%;
    height: 100%;
}.app-launch-now .container p::after {
    border-radius: 3px;
    left: 0;
    height: 6px;
    background: rgb(218,176,177);
    content: '';
    position: absolute;
    width: 60px;
    bottom: -20px;
}.app-launch-now .app-path-edu::before {
    z-index: -1;
    height: 200px;
    left: -100px;
    top: -100px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
    content: '';
    position: absolute;
    background: rgb(218,176,177,0.5);
    width: 200px;
}.app-launch-now .app-path-edu::after {
    bottom: -30px;
    right: 40px;
    height: 10px;
    content: '';
    border-radius: 50%;
    width: 10px;
    background: rgb(218,176,177);
    position: absolute;
}

@media (max-width: 991px) {.app-launch-now {
    padding: 120px 0;
}.app-launch-now .container p {
    padding-right: 40px;
    font-size: calc(18px * 1.2);
}.app-launch-now .app-feedback-support {
    height: 100px;
}.app-launch-now .container p::after {
    width: 50px;
    height: 5px;
}
}

@media (max-width: 767px) {.app-launch-now {
    padding: 90px 0;
}.app-launch-now .app-path-edu {
    flex-direction: column;
}.app-launch-now .container p {
    flex: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
    font-size: 18px;
}.app-launch-now .app-feedback-support {
    flex: none;
    width: 100%;
    height: 80px;
}.app-launch-now .app-path-edu::after {
    left: 40px;
    right: auto;
}
}

@media (max-width: 480px) {.app-launch-now {
    padding: 70px 0;
}.app-launch-now .container p {
    margin-bottom: 40px;
    font-size: calc(14px * 1.2);
}.app-launch-now .app-feedback-support {
    height: 70px;
    border-radius: 35px 0 35px 35px;
    font-size: calc(14px * 0.9);
}.app-launch-now .app-feedback-support:hover::before {
    border-radius: 35px 0 35px 35px;
}.app-launch-now .container p::after {
    width: 40px;
    height: 4px;
    bottom: -15px;
}.app-launch-now .app-path-edu::after {
    left: 30px;
    bottom: -25px;
    width: 8px;
    height: 8px;
}}.app-analysis-summary {
    padding: 100px 0;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}.app-analysis-summary::before {
    width: 100%;
    content: "";
    height: 100%;
    background-color: #000000;
    opacity: 0.75;
    top: 0;
    position: absolute;
    left: 0;
    z-index: 1;
}.app-analysis-summary::after {
    background: 
        linear-gradient(90deg, transparent 95%, rgb(218,176,177) 95%, rgb(218,176,177) 96%, transparent 96%) 0 0 / 25px 100%,
        linear-gradient(0deg, transparent 95%, rgb(199,134,137) 95%, rgb(199,134,137) 96%, transparent 96%) 0 0 / 100% 25px;
    content: "";
    top: 0;
    animation: patternMove 20s linear infinite;
    width: 100%;
    left: 0;
    position: absolute;
    z-index: 2;
    opacity: 0.2;
    height: 100%;
}@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.app-analysis-summary .container {
    margin: 0 auto;
    z-index: 5;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
}.app-analysis-summary .app-knowledge-upgrade {
    position: relative;
}.app-analysis-summary .app-extra-experts {
    bottom: 30px;
    align-items: center;
    width: 100px;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    background: none;
    position: absolute;
    height: 100px;
    display: flex;
    border-radius: 0;
    right: 30px;
    opacity: 0.7;
}.app-analysis-summary .app-extra-experts:hover {
    opacity: 1;
    transform: scale(1.1);
}.app-analysis-summary .app-extra-experts svg {
    height: 100%;
    width: 100%;
    fill: rgb(218,176,177);
}.app-analysis-summary .app-extra-experts svg path {
    fill: rgb(218,176,177);
}.app-analysis-summary .app-statistics-grow {
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    font-size: calc(47px * 1.2);
    margin: 0 0 5px 0;
    text-align: left;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    -webkit-background-clip: text !important;
    background: linear-gradient(90deg, rgb(218,176,177), rgb(199,134,137));
    display: inline-block;
}.app-analysis-summary .app-expert-upgrade {
    line-height: 1.6;
    font-size: 15px;
    padding-left: 20px;
    margin-bottom: 60px;
    width: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    border-left: 3px solid rgb(218,176,177);
}.app-analysis-summary .app-fast-benefits {
    gap: 80px 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}.app-analysis-summary .app-statistics-pro {
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    width: 50%;
}.app-analysis-summary .app-statistics-pro:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
}.app-analysis-summary .app-statistics-pro:nth-child(even) {
    text-align: left;
    transform: translateY(80px);
    padding-left: 50px;
}.app-analysis-summary .app-statistics-pro:hover {
    transform: scale(1.05);
}.app-analysis-summary .app-statistics-pro:nth-child(even):hover {
    transform: translateY(80px) scale(1.05);
}.app-analysis-summary .app-statistics-classes {
    justify-content: center;
    display: flex;
    position: absolute;
    width: 60px;
    box-shadow: 0 0 0 3px rgb(218,176,177);
    background: #000000;
    align-items: center;
    z-index: 5;
    border-radius: 10px;
    top: 0;
    height: 60px;
}.app-analysis-summary .app-statistics-pro:nth-child(odd) .app-statistics-classes {
    right: -30px;
}.app-analysis-summary .app-statistics-pro:nth-child(even) .app-statistics-classes {
    left: -30px;
}.app-analysis-summary .app-statistics-classes svg {
    fill: rgb(218,176,177);
    width: 30px;
    height: 30px;
}.app-analysis-summary .app-statistics-classes svg path {
    fill: rgb(218,176,177);
}.app-analysis-summary .app-statistics-pro span {
    display: block;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
}.app-analysis-summary .app-statistics-pro:nth-child(odd) span::after {
    top: 50%;
    width: 30px;
    height: 2px;
    transform: translateY(-50%);
    content: "";
    right: -50px;
    position: absolute;
    background: rgb(218,176,177);
}.app-analysis-summary .app-statistics-pro:nth-child(even) span::after {
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    position: absolute;
    background: rgb(218,176,177);
    height: 2px;
    width: 30px;
    content: "";
}.app-analysis-summary .app-statistics-pro p {
    line-height: 1.5;
    font-size: calc(15px * 0.95);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}.app-analysis-summary .app-fast-benefits::before {
    content: "";
    left: 50%;
    background: linear-gradient(
        to bottom,
        rgb(218,176,177),
        rgb(199,134,137)
    );
    width: 4px;
    top: 0;
    position: absolute;
    height: 100%;
    z-index: 0;
    transform: translateX(-50%);
}.app-analysis-summary .app-fast-benefits::after {
    transform: translateX(-50%);
    background: rgb(199,134,137);
    bottom: -20px;
    left: 50%;
    border-radius: 50%;
    height: 20px;
    content: "";
    z-index: 2;
    position: absolute;
    width: 20px;
}

@media screen and (max-width: 992px) {.app-analysis-summary .app-expert-upgrade {
    width: 70%;
}.app-analysis-summary .app-extra-experts {
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
}.app-analysis-summary .app-statistics-pro {
    transform: none !important;
}.app-analysis-summary .app-statistics-pro:hover {
    transform: scale(1.03) !important;
}.app-analysis-summary .app-statistics-pro:nth-child(odd) {
    padding-right: 40px;
}.app-analysis-summary .app-statistics-pro:nth-child(even) {
    padding-left: 40px;
}.app-analysis-summary .app-statistics-pro:nth-child(odd) span::after {
    right: -40px;
    width: 20px;
}.app-analysis-summary .app-statistics-pro:nth-child(even) span::after {
    width: 20px;
    left: -40px;
}
}

@media screen and (max-width: 768px) {.app-analysis-summary {
    padding: 80px 0;
}.app-analysis-summary .app-statistics-grow {
    font-size: 47px;
}.app-analysis-summary .app-expert-upgrade {
    width: 100%;
    margin-bottom: 50px;
}.app-analysis-summary .app-statistics-pro {
    margin-bottom: 80px;
    text-align: left !important;
    width: 100%;
    padding: 0 0 0 80px !important;
}.app-analysis-summary .app-statistics-pro:last-child {
    margin-bottom: 0;
}.app-analysis-summary .app-statistics-classes {
    right: auto !important;
    left: 0 !important;
}.app-analysis-summary .app-fast-benefits::before {
    transform: none;
    left: 30px;
}.app-analysis-summary .app-fast-benefits::after {
    left: 30px;
    transform: none;
}.app-analysis-summary .app-statistics-pro span::after {
    display: none;
}.app-analysis-summary .app-extra-experts {
    width: 60px;
    height: 60px;
    bottom: auto;
    top: 0;
    right: 0;
}
}

@media screen and (max-width: 576px) {.app-analysis-summary {
    padding: 60px 0;
}.app-analysis-summary .app-statistics-grow {
    font-size: calc(47px * 0.9);
}.app-analysis-summary .app-expert-upgrade {
    font-size: calc(15px * 0.95);
    margin-bottom: 40px;
    padding-left: 15px;
}.app-analysis-summary .app-statistics-pro {
    margin-bottom: 40px;
    padding: 0 0 0 60px !important;
}.app-analysis-summary .app-statistics-classes {
    width: 50px;
    height: 50px;
}.app-analysis-summary .app-statistics-classes svg {
    height: 25px;
    width: 25px;
}.app-analysis-summary .app-fast-benefits::before {
    left: 25px;
}.app-analysis-summary .app-fast-benefits::after {
    left: 25px;
}.app-analysis-summary .app-statistics-pro span {
    font-size: calc(30px * 0.9);
}.app-analysis-summary .app-statistics-pro p {
    font-size: calc(15px * 0.9);
}}.app-course-program-description {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: rgb(236,215,216);
}.app-course-program-description::before {
    z-index: 1;
    background-size: 60px 60px;
    top: 0;
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(225deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(315deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0;
    height: 100%;
}.app-course-program-description::after {
    height: 100%;
    z-index: 2;
    content: "";
    width: 100%;
    left: 0;
    opacity: 0.15;
    background: radial-gradient(circle at center, rgb(218,176,177,0.5) 0%, transparent 70%);
    top: 0;
    position: absolute;
}.app-course-program-description .app-training-route {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
}.app-course-program-description .app-textual-box {
    z-index: 4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    transform: translateZ(0);
    backdrop-filter: blur(10px);
    position: relative;
    border-radius: 17px;
}.app-course-program-description .app-textual-box::before {
    left: 0;
    opacity: 0.3;
    mask-composite: exclude;
    width: 100%;
    top: 0;
    content: "";
    border-radius: 17px;
    z-index: -1;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    border: 1px solid transparent;
    position: absolute;
    -webkit-mask-composite: xor;
    height: 100%;
    background: linear-gradient(135deg, rgb(218,176,177,0.5), transparent 70%, rgb(199,134,137,0.5)) border-box;
}.app-course-program-description .app-textual-box h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
    padding-bottom: 20px;
    font-size: 34px;
}.app-course-program-description .app-textual-box h2::after {
    content: "";
    bottom: 0;
    width: 60px;
    left: 50%;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgb(218,176,177), rgb(199,134,137));
    transform: translateX(-50%);
    position: absolute;
}.app-course-program-description .app-textual-box .description {
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}.app-course-program-description .app-textual-box .description:last-child {
    margin-bottom: 0;
}.app-course-program-description .app-shot {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-radius: 17px;
    height: 500px;
    overflow: hidden;
    width: 100%;
    margin-top: 60px;
    position: relative;
}.app-course-program-description .app-shot::before {
    content: "";
    left: 0;
    position: absolute;
    height: 100%;
    z-index: 1;
    width: 100%;
    top: 0;
    background: linear-gradient(135deg, rgb(218,176,177,0.5) 0%, transparent 50%);
    opacity: 0.3;
}.app-course-program-description .app-shot::after {
    content: "";
    width: 100%;
    position: absolute;
    opacity: 0.3;
    z-index: 2;
    background: linear-gradient(45deg, transparent 50%, rgb(199,134,137,0.5) 100%);
    height: 100%;
    top: 0;
    left: 0;
}.app-course-program-description .app-training-route::before,
.app-course-program-description .app-training-route::after {
    z-index: 1;
    height: 1px;
    opacity: 0.5;
    content: "";
    width: 200px;
    top: 50%;
    background-color: rgb(218,176,177,0.5);
    position: absolute;
}.app-course-program-description .app-training-route::before {
    transform: rotate(45deg);
    left: -100px;
}.app-course-program-description .app-training-route::after {
    transform: rotate(-45deg);
    right: -100px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 992px) {.app-course-program-description .app-training-route {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-template-rows: auto auto auto;
    display: grid;
    grid-gap: 30px;
}.app-course-program-description .app-textual-box {
    grid-column: 1 / 3;
    max-width: 100%;
    grid-row: 1;
    margin-bottom: 60px;
}.app-course-program-description .app-textual-box .description:first-of-type {
    grid-column: 1;
    padding-right: 30px;
    text-align: right;
    grid-row: 2;
}.app-course-program-description .app-textual-box .description:last-child {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    padding-left: 30px;
}.app-course-program-description .app-shot {
    max-width: 100%;
    grid-column: 1 / 3;
    height: 500px;
    margin-top: 60px;
    grid-row: 3;
}.app-course-program-description .app-training-route {
    position: relative;
}.app-course-program-description .app-training-route::after {
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    content: "";
    top: 0;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, rgb(218,176,177,0.5) 30%, rgb(218,176,177,0.5) 70%, transparent);
    z-index: 1;
}
}

@media (min-width: 1200px) {.app-course-program-description .app-training-route {
    align-items: center;
    flex-direction: column;
    display: flex;
}.app-course-program-description .app-textual-box {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}.app-course-program-description .app-textual-box h2 {
    width: 100%;
}.app-course-program-description .app-textual-box .description {
    position: relative;
    width: calc(50% - 30px);
    padding: 0 15px;
    text-align: left;
}.app-course-program-description .app-textual-box .description:first-of-type::after {
    right: 0;
    height: 100%;
    top: 0;
    content: "";
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgb(218,176,177,0.5), transparent);
    position: absolute;
}.app-course-program-description .app-shot {
    margin-top: 60px;
    border-radius: calc(17px * 2);
    height: 450px;
    max-width: 80%;
}.app-course-program-description .app-training-route::after {
    display: none;
}
}

@media (max-width: 991px) {.app-course-program-description {
    padding: 80px 0;
}.app-course-program-description .app-textual-box {
    padding: 30px;
}.app-course-program-description .app-textual-box h2 {
    font-size: calc(34px * 0.9);
}.app-course-program-description .app-shot {
    margin-top: 40px;
    height: 400px;
}.app-course-program-description .app-training-route::before,
    .app-course-program-description .app-training-route::after {
    width: 150px;
}
}

@media (max-width: 768px) {.app-course-program-description {
    padding: 60px 0;
}.app-course-program-description .app-textual-box {
    padding: 25px 20px;
}.app-course-program-description .app-textual-box h2 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: calc(34px * 0.85);
}.app-course-program-description .app-textual-box h2::after {
    height: 2px;
    width: 50px;
}.app-course-program-description .app-textual-box .description {
    font-size: calc(12px * 0.95);
}.app-course-program-description .app-shot {
    height: 350px;
    margin-top: 30px;
}.app-course-program-description .app-training-route::before,
    .app-course-program-description .app-training-route::after {
    display: none;
}
}

@media (max-width: 576px) {.app-course-program-description {
    padding: 50px 0;
}.app-course-program-description .app-textual-box {
    padding: 20px 15px;
}.app-course-program-description .app-textual-box h2 {
    font-size: calc(34px * 0.8);
    padding-bottom: 12px;
    margin-bottom: 20px;
}.app-course-program-description .app-textual-box h2::after {
    width: 40px;
}.app-course-program-description .app-textual-box .description {
    font-size: calc(12px * 0.9);
    line-height: 1.7;
}.app-course-program-description .app-shot {
    height: 250px;
    margin-top: 25px;
}}.app-client-comments {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(236,215,216) 0%, rgba(rgb(218,176,177,0.5), 0.05) 100%);
}.app-client-comments::before {
    background: linear-gradient(90deg, transparent, rgb(199,134,137), transparent);
    position: absolute;
    left: 0;
    height: 3px;
    content: "";
    top: 0;
    right: 0;
    opacity: 0.7;
}.app-client-comments::after {
    background: radial-gradient(circle at 50% 120%, rgb(218,176,177,0.5) 0%, transparent 70%);
    bottom: 0;
    z-index: 0;
    height: 100%;
    left: 0;
    width: 100%;
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    content: "";
}.app-client-comments h2.container {
    margin-bottom: 3.5rem;
    transform: perspective(1000px) translateZ(0);
    position: relative;
    font-weight: 700;
    z-index: 2;
    text-align: center;
    font-size: calc(29px * 1.1);
    transition: transform 0.5s ease-out;
    color: #000000;
}.app-client-comments h2.container::after {
    background: linear-gradient(to right, transparent, rgb(199,134,137), transparent);
    left: 50%;
    bottom: -15px;
    content: "";
    width: 80px;
    position: absolute;
    height: 3px;
    transform: translateX(-50%);
}.app-client-comments .container.app-path-edu {
    padding: 0 15px;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
}.app-client-comments .app-learning-testimonials {
    perspective: 1000px;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}.app-client-comments .app-success-stories {
    flex-direction: column;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transform: translateY(0) scale(1) rotate(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    border: 1px solid rgba(rgb(255, 255, 255, 0.5), 0.2);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    box-shadow: 0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
                0 1px 4px rgba(rgba(0, 0, 0, 0.5), 0.03);
    display: flex;
}.app-client-comments .app-success-stories::before {
    transform-origin: left;
    height: 3px;
    transition: transform 0.5s ease-out;
    width: 100%;
    opacity: 0.8;
    top: 0;
    transform: scaleX(0);
    content: "";
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(218,176,177), rgb(199,134,137));
}.app-client-comments .app-success-stories:hover {
    transform: translateY(-10px) scale(1.01) rotate(0.5deg);
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.08),
                0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.04);
}.app-client-comments .app-success-stories:hover::before {
    transform: scaleX(1);
}.app-client-comments .app-success-stories h3 {
    transform-origin: left;
    position: relative;
    z-index: 2;
    font-size: calc(23px * 1.1);
    font-weight: 600;
    color: #000000;
    transition: transform 0.3s ease;
    margin-bottom: 0.75rem;
}.app-client-comments .app-success-stories:hover h3 {
    color: rgb(218,176,177);
    transform: translateX(5px);
}.app-client-comments .app-success-stories .description {
    z-index: 2;
    color: #000000;
    position: relative;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 12px;
}.app-client-comments .app-success-stories div {
    height: 0;
    width: 100%;
    overflow: hidden;
    transform-origin: bottom;
    border-radius: 4px;
    position: relative;
    transition: transform 0.4s ease;
    padding-bottom: 60%;
}.app-client-comments .app-success-stories:hover div {
    transform: scale(1.03);
}.app-client-comments .app-success-stories img {
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    transition: transform 0.6s ease;
    top: 0;
    object-fit: cover;
}.app-client-comments .app-success-stories:hover img {
    transform: scale(1.05);
}.app-client-comments .app-success-stories:nth-child(odd) {
    transform: translateY(0) rotate(-0.5deg);
}.app-client-comments .app-success-stories:nth-child(odd):hover {
    transform: translateY(-10px) rotate(0);
}.app-client-comments .app-success-stories:nth-child(even) {
    transform: translateY(0) rotate(0.5deg);
}.app-client-comments .app-success-stories:nth-child(even):hover {
    transform: translateY(-10px) rotate(0);
}.app-client-comments .app-success-stories::after {
    font-family: serif;
    right: 1rem;
    line-height: 1;
    color: rgb(199,134,137);
    position: absolute;
    z-index: 1;
    transform: translateY(-10px);
    top: 0.5rem;
    content: "";
    transition: all 0.4s ease;
    font-size: 5rem;
    opacity: 0.1;
}.app-client-comments .app-success-stories:hover::after {
    transform: translateY(0) rotate(5deg);
    opacity: 0.15;
}

@media (max-width: 991px) {.app-client-comments {
    padding: 4rem 0;
}.app-client-comments h2.container {
    margin-bottom: 2.5rem;
    font-size: 29px;
}.app-client-comments .app-learning-testimonials {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}
}

@media (max-width: 767px) {.app-client-comments {
    padding: 3rem 0;
}.app-client-comments h2.container {
    margin-bottom: 2rem;
    font-size: calc(29px * 0.9);
}.app-client-comments h2.container::after {
    width: 60px;
    bottom: -10px;
}.app-client-comments .app-learning-testimonials {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 1.5rem;
}.app-client-comments .app-success-stories {
    padding: 1.5rem;
}
}

@media (max-width: 480px) {.app-client-comments {
    padding: 2.5rem 0;
}.app-client-comments h2.container {
    padding: 0 1rem;
    font-size: calc(29px * 0.8);
}.app-client-comments .app-success-stories {
    padding: 1.25rem;
}.app-client-comments .app-success-stories h3 {
    font-size: 23px;
}.app-client-comments .app-success-stories .description {
    font-size: calc(12px * 0.95);
    margin-bottom: 1rem;
}
}

@media (hover: none) {.app-client-comments .app-success-stories:hover {
    box-shadow: 0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
                    0 1px 4px rgba(rgba(0, 0, 0, 0.5), 0.03);
    transform: none;
}.app-client-comments .app-success-stories:hover::before {
    transform: scaleX(0.3);
}.app-client-comments .app-success-stories:hover h3 {
    transform: none;
}.app-client-comments .app-success-stories:hover div,
    .app-client-comments .app-success-stories:hover img {
    transform: none;
}}.app-aspiring-learners {
    position: relative;
    background: linear-gradient(120deg, rgb(236,215,216) 0%, #ffffff 100%);
    padding: 100px 0;
    overflow: hidden;
}.app-aspiring-learners::before {
    opacity: 0.3;
    bottom: 0;
    width: 60%;
    z-index: 1;
    background-size: 20px 20px;
    background-image: radial-gradient(rgb(218,176,177,0.5) 20%, transparent 20%);
    content: "";
    position: absolute;
    height: 60%;
    right: 0;
    background-position: 0 0;
}.app-aspiring-learners .container {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding: 0 15px;
    max-width: 1140px;
}.app-aspiring-learners .app-path-edu {
    position: relative;
}.app-aspiring-learners h4 {
    text-align: center;
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.5s ease;
    font-size: 38px;
    color: rgb(218,176,177);
    position: relative;
    margin-bottom: 50px;
    font-weight: 700;
}.app-aspiring-learners h4:hover {
    transform: perspective(1000px) rotateX(5deg);
}.app-aspiring-learners h4::after {
    position: absolute;
    border-radius: 5px;
    height: 5px;
    transform: translateX(-50%);
    width: 100px;
    background: linear-gradient(90deg, rgb(218,176,177), rgb(199,134,137));
    left: 50%;
    bottom: -15px;
    content: "";
}.app-aspiring-learners div > div {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
    gap: 30px;
    display: grid;
}.app-aspiring-learners p {
    display: flex;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    align-items: center;
    font-size: 15px;
    text-align: center;
    color: #000000;
    margin: 0;
    height: 200px;
    z-index: 1;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}.app-aspiring-learners p:nth-child(even) {
    transform: translateY(100px);
}.app-aspiring-learners p::before {
    opacity: 0;
    background: linear-gradient(135deg, #ffffff, rgb(236,215,216));
    height: 100%;
    top: 0;
    content: "";
    left: 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: opacity 0.3s ease;
    width: 100%;
    position: absolute;
    z-index: -1;
}.app-aspiring-learners p:hover {
    color: #000000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.app-aspiring-learners p:hover::before {
    opacity: 1;
}.app-aspiring-learners p svg {
    left: 50%;
    top: 30px;
    transition: all 0.3s ease;
    width: 32px;
    transform: translateX(-50%);
    position: absolute;
    height: 32px;
}.app-aspiring-learners p svg path {
    fill: rgb(218,176,177);
    transition: fill 0.3s ease;
}.app-aspiring-learners p span {
    width: 100%;
    display: block;
    margin-top: 50px;
}.app-aspiring-learners p:hover svg {
    transform: translateX(-50%) scale(1.2);
}.app-aspiring-learners p:hover svg path {
    fill: rgb(199,134,137);
}@keyframes hexSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.app-aspiring-learners::after {
    z-index: 1;
    content: "";
    top: 10%;
    opacity: 0.5;
    left: 5%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    position: absolute;
    width: 200px;
    border: 2px dashed rgb(199,134,137,0.5);
    height: 200px;
    animation: hexSpin 30s linear infinite;
}@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.app-aspiring-learners .app-path-edu > div p {
    animation: fadeScale 0.5s ease forwards;
    opacity: 0;
}.app-aspiring-learners .app-path-edu > div p:nth-child(1) {
    animation-delay: 0.1s;
}.app-aspiring-learners .app-path-edu > div p:nth-child(2) {
    animation-delay: 0.2s;
}.app-aspiring-learners .app-path-edu > div p:nth-child(3) {
    animation-delay: 0.3s;
}.app-aspiring-learners .app-path-edu > div p:nth-child(4) {
    animation-delay: 0.4s;
}.app-aspiring-learners .app-path-edu > div p:nth-child(5) {
    animation-delay: 0.5s;
}.app-aspiring-learners .app-path-edu > div p:nth-child(6) {
    animation-delay: 0.6s;
}

@media (max-width: 991px) {.app-aspiring-learners {
    padding: 80px 0;
}.app-aspiring-learners h4 {
    font-size: calc(38px * 0.85);
    margin-bottom: 70px;
}.app-aspiring-learners div > div {
    gap: 100px 20px;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
}.app-aspiring-learners p {
    height: 180px;
    padding: 35px 25px;
}.app-aspiring-learners p:nth-child(3n+2) {
    transform: translateY(0);
}.app-aspiring-learners p:nth-child(even) {
    transform: translateY(90px);
}.app-aspiring-learners p svg {
    top: 25px;
}.app-aspiring-learners p span {
    margin-top: 45px;
}.app-aspiring-learners::after {
    width: 150px;
    height: 150px;
}
}

@media (max-width: 768px) {.app-aspiring-learners {
    padding: 70px 0;
}.app-aspiring-learners h4 {
    margin-bottom: 60px;
    font-size: calc(38px * 0.7);
}.app-aspiring-learners h4::after {
    bottom: -12px;
    width: 80px;
}.app-aspiring-learners div > div {
    gap: 20px;
    grid-template-columns: 1fr;
}.app-aspiring-learners p {
    aspect-ratio: 1.73 / 1;
    padding: 20px;
    height: auto;
    clip-path: none;
    border-radius: 15px;
}.app-aspiring-learners p::before {
    clip-path: none;
    border-radius: 15px;
}.app-aspiring-learners p:nth-child(even) {
    transform: translateY(0);
}.app-aspiring-learners p svg {
    height: 28px;
    position: static;
    margin-right: 15px;
    width: 28px;
    transform: none;
}.app-aspiring-learners p span {
    margin-top: 0;
    display: inline;
}.app-aspiring-learners p:hover {
    transform: translateY(0) scale(1.03);
}.app-aspiring-learners p:hover svg {
    transform: scale(1.2);
}.app-aspiring-learners::after {
    display: none;
}
}

@media (max-width: 576px) {.app-aspiring-learners {
    padding: 60px 0;
}.app-aspiring-learners h4 {
    font-size: calc(38px * 0.6);
    margin-bottom: 40px;
}.app-aspiring-learners h4::after {
    height: 4px;
    width: 60px;
    bottom: -10px;
}.app-aspiring-learners p {
    padding: 15px;
    font-size: calc(15px * 0.9);
}.app-aspiring-learners p svg {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}}.app-contact-form-section {
    background: linear-gradient(145deg, rgb(236,215,216) 0%, rgba(9, 19, 32, 0.9) 100%);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.app-contact-form-section::before {
    left: 0;
    top: 0;
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(218,176,177,0.5) 0px,
        transparent 1px,
        transparent 10px,
        rgb(218,176,177,0.5) 11px
    );
    animation: gridMove 20s linear infinite;
    height: 100%;
    opacity: 0.05;
    content: "";
    position: absolute;
    pointer-events: none;
}.app-contact-form-section::after {
    opacity: 0.1;
    pointer-events: none;
    content: "";
    height: 200%;
    left: -50%;
    background: radial-gradient(circle, rgb(218,176,177,0.5) 0%, transparent 60%);
    width: 200%;
    top: -50%;
    animation: pulseGlow 15s ease-in-out infinite;
    position: absolute;
}.app-contact-form-section .container {
    padding: 0 20px;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    position: relative;
}.app-contact-form-section h2 {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    color: #ffffff;
    font-family: Arial, sans-serif;
}.app-contact-form-section h2::after {
    position: absolute;
    width: 80px;
    content: "";
    height: 3px;
    background: linear-gradient(to right, transparent, rgb(218,176,177), transparent);
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
}.app-contact-form-section .app-support-block {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}.app-contact-form-section .app-support-block::before {
    pointer-events: none;
    position: absolute;
    background: linear-gradient(to bottom right, rgb(218,176,177,0.5), transparent);
    top: 0;
    opacity: 0.03;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
}.app-contact-form-section .app-shot {
    min-height: 500px;
    transition: transform 0.6s ease;
    position: relative;
    flex: 1;
    transform: scale(1.01);
}.app-contact-form-section .app-shot::after {
    position: absolute;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}.app-contact-form-section .app-message-inquiry {
    padding: 50px;
    flex: 1;
    position: relative;
}.app-contact-form-section .app-message-inquiry::before {
    width: 50px;
    border-right: 2px solid rgb(218,176,177,0.5);
    height: 50px;
    border-top: 2px solid rgb(218,176,177,0.5);
    top: 20px;
    content: "";
    opacity: 0.7;
    right: 20px;
    position: absolute;
}.app-contact-form-section .app-message-inquiry::after {
    position: absolute;
    opacity: 0.7;
    border-bottom: 2px solid rgb(218,176,177,0.5);
    content: "";
    width: 50px;
    left: 20px;
    height: 50px;
    bottom: 20px;
    border-left: 2px solid rgb(218,176,177,0.5);
}.app-contact-form-section form {
    width: 100%;
}.app-contact-form-section form h3 {
    position: relative;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
    padding-left: 15px;
}.app-contact-form-section form h3::before {
    position: absolute;
    width: 5px;
    height: 25px;
    content: "";
    background: rgb(218,176,177);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 10px;
}.app-contact-form-section form input[type="text"] {
    padding: 15px 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    font-size: 15px;
    transition: all 0.3s ease;
}.app-contact-form-section form input[type="text"]:focus {
    border-color: rgb(218,176,177);
    outline: none;
    box-shadow: 0 0 15px rgba(rgb(218,176,177), 0.2);
    background: rgba(255, 255, 255, 0.08);
}.app-contact-form-section form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.app-contact-form-section .app-reach-box {
    position: relative;
    margin-bottom: 30px;
    align-items: flex-start;
    display: flex;
}.app-contact-form-section .app-reach-box input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.app-contact-form-section .app-reach-box label {
    padding-left: 35px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    font-size: 12px;
    line-height: 1.5;
}.app-contact-form-section .app-reach-box label::before {
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    height: 22px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 22px;
    content: "";
    left: 0;
    top: 2px;
    background: rgba(255, 255, 255, 0.05);
}.app-contact-form-section .app-reach-box input[type="checkbox"]:checked + label::before {
    border-color: rgb(218,176,177);
    background: rgb(218,176,177);
}.app-contact-form-section .app-reach-box input[type="checkbox"]:checked + label::after {
    top: 11px;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    border-left: 2px solid #ffffff;
    height: 4px;
    left: 7px;
    content: "";
    position: absolute;
    width: 8px;
}.app-contact-form-section .app-reach-box label a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgb(218,176,177);
}.app-contact-form-section .app-reach-box label a:hover {
    text-decoration: underline;
}.app-contact-form-section form .app-feedback-support {
    font-weight: 600;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    position: relative;
    transition: all 0.4s ease;
    padding: 15px 35px;
    display: inline-block;
    color: #ffffff;
    z-index: 1;
    overflow: hidden;
    font-family: Arial, sans-serif;
    cursor: pointer;
    background: linear-gradient(45deg, rgb(218,176,177), rgb(199,134,137));
}.app-contact-form-section form .app-feedback-support::before {
    left: -100%;
    top: 0;
    height: 100%;
    transition: all 0.4s ease;
    background: linear-gradient(45deg, rgb(199,134,137), rgb(218,176,177));
    width: 100%;
    position: absolute;
    content: "";
    z-index: -1;
}.app-contact-form-section form .app-feedback-support:hover::before {
    left: 0;
}.app-contact-form-section form .app-feedback-support:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}.app-contact-form-section svg {
    fill: rgb(218,176,177);
    height: 24px;
    margin-right: 15px;
    width: 24px;
}.app-contact-form-section svg path {
    transition: fill 0.3s ease;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
}

@media screen and (max-width: 991px) {.app-contact-form-section {
    padding: 80px 0;
}.app-contact-form-section .app-support-block {
    flex-direction: column;
}.app-contact-form-section .app-shot {
    min-height: 300px;
    order: 1;
}.app-contact-form-section .app-message-inquiry {
    order: 2;
    padding: 40px 30px;
}
}

@media screen and (max-width: 767px) {.app-contact-form-section {
    padding: 60px 0;
}.app-contact-form-section h2 {
    margin-bottom: 40px;
}.app-contact-form-section .app-shot {
    min-height: 200px;
}.app-contact-form-section .app-message-inquiry {
    padding: 30px 20px;
}.app-contact-form-section form .app-feedback-support {
    width: 100%;
    text-align: center;
}
}

@media screen and (max-width: 480px) {.app-contact-form-section {
    padding: 40px 0;
}.app-contact-form-section h2 {
    font-size: calc(28px * 0.8);
}.app-contact-form-section form h3 {
    font-size: calc(18px * 0.9);
}.app-contact-form-section .app-message-inquiry::before,
    .app-contact-form-section .app-message-inquiry::after {
    height: 30px;
    width: 30px;
}}.app-trackingNoticeDialog {
    position: fixed;
    background: #ffffff;
    z-index: 1050;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid rgb(218,176,177);
    transition: all 0.3s ease-in-out;
    bottom: 0;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    width: 100%;
}.app-data-approval {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}.app-digital-cookies {
    flex-shrink: 0;
    margin-right: 15px;
}.app-digital-cookies svg {
    fill: rgb(218,176,177);
    transition: fill 0.3s ease-in-out;
    width: 50px;
    height: 50px;
}.app-online-tracking {
    flex-grow: 1;
    margin-right: 15px;
}.app-online-tracking h5 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
    color: rgb(218,176,177);
}.app-online-tracking p {
    font-size: 18px;
    margin-bottom: 0;
    color: #000000;
}.app-cookie-protect {
    padding: 0.375rem 0.75rem;
    border-radius: 10px;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    font-size: 20px;
    margin-left: 10px;
    white-space: nowrap;
    line-height: 1.5;
    border: 1px solid transparent;
}.cookie_button.app-data-comply {
    background-color: rgb(218,176,177);
    border-color: rgb(218,176,177);
    color: #ffffff;
}#app-cookie-modal-panel {
    display: none;
}#app-cookie-modal-panel:checked ~ .app-trackingNoticeDialog {
    opacity: 0;
    visibility: hidden;
}.cookie_button.app-data-comply:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}.cookie_button.app-cookie-data {
    background-color: rgb(199,134,137);
    border-color: rgb(199,134,137);
    color: #000000;
}.cookie_button.app-cookie-data:hover {
    border-color: rgb(218,176,177);
    color: #ffffff;
    background-color: rgb(218,176,177);
}.app-trackingNoticeDialog p a {
    text-decoration: underline;
    color: rgb(218,176,177);
}.app-trackingNoticeDialog p a:hover {
    color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1200px) {.app-online-tracking h5 {
    font-size: calc(22px - 2px);
}.app-online-tracking p {
    font-size: calc(18px - 2px);
}.app-cookie-protect {
    font-size: calc(20px - 2px);
}
}
@media (max-width: 800px) {.app-data-approval {
    flex-direction: column;
    align-items: center;
}.app-digital-cookies {
    margin-bottom: 10px;
}.app-online-tracking {
    text-align: center;
    margin-bottom: 15px;
}.app-cookie-protect {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
}}
.app-service-contact {
    overflow: hidden;
    isolation: isolate;
    position: relative;
    background: rgb(236,215,216);
    padding: 80px 0;
}.app-service-contact::before {
    height: 100%;
    top: 0;
    width: 100%;
    opacity: 0.4;
    z-index: -2;
    left: 0;
    content: "";
    position: absolute;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(218,176,177,0.5) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgb(199,134,137,0.5) 0%, transparent 20%);
}.app-service-contact::after {
    height: 100%;
    z-index: -1;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, rgb(218,176,177,0.5) 0%, transparent 100%);
    width: 100%;
    opacity: 0.1;
    left: 0;
    top: 0;
}.app-service-contact .container {
    position: relative;
}.app-service-contact .app-send-message {
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    padding: 50px;
    border-radius: 19px;
    border: 1px solid #ffffff;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
                inset 0 1px 1px #ffffff,
                0 0 30px rgb(218,176,177,0.5);
}.app-service-contact .app-send-message::before {
    background: rgb(218,176,177,0.5);
    content: "";
    filter: blur(60px);
    opacity: 0.3;
    right: -100px;
    top: -100px;
    position: absolute;
    border-radius: 50%;
    height: 200px;
    animation: pulse 8s infinite alternate;
    width: 200px;
}.app-service-contact .app-send-message::after {
    width: 150px;
    animation: pulse 6s infinite alternate-reverse;
    background: rgb(199,134,137,0.5);
    filter: blur(50px);
    height: 150px;
    border-radius: 50%;
    opacity: 0.2;
    position: absolute;
    bottom: -75px;
    content: "";
    left: -75px;
}.app-service-contact .app-send-message h2 {
    position: relative;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 700;
    display: inline-block;
    color: #ffffff;
    text-shadow: 0 2px 4px #000000;
}.app-service-contact .app-send-message h2::after {
    bottom: -10px;
    width: 40%;
    border-radius: 10px;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(218,176,177), transparent);
    height: 3px;
    left: 0;
}.app-service-contact .app-send-message p {
    line-height: 1.6;
    font-weight: 400;
    font-size: 12px;
    max-width: 90%;
    color: #ffffff;
    text-shadow: 0 1px 2px #000000;
    margin-bottom: 25px;
    position: relative;
}.app-service-contact .app-send-message p:last-of-type {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    padding: 12px 18px;
    border-left: 3px solid rgb(218,176,177);
    align-items: center;
    margin-top: 30px;
}.app-service-contact .app-send-query {
    justify-content: center;
    margin-top: 40px;
    display: flex;
    gap: 30px;
}.app-service-contact .app-support-now {
    align-items: center;
    z-index: 1;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    width: 70px;
    height: 70px;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    justify-content: center;
    border: 1px solid #ffffff;
    display: flex;
    overflow: hidden;
}.app-service-contact .app-support-now::before {
    background: linear-gradient(45deg, rgb(218,176,177), rgb(199,134,137));
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    content: "";
    z-index: -1;
    left: 0;
    position: absolute;
    transition: opacity 0.3s ease;
}.app-service-contact .app-support-now:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: #ffffff;
}.app-service-contact .app-support-now:hover::before {
    opacity: 0.8;
}.app-service-contact .app-support-now svg {
    width: 28px;
    transition: transform 0.3s ease;
    height: 28px;
}.app-service-contact .app-support-now svg path {
    transition: fill 0.3s ease;
    fill: rgb(218,176,177);
}.app-service-contact .app-support-now:hover svg {
    transform: scale(1.2);
}.app-service-contact .app-support-now:hover svg path {
    fill: #ffffff;
}.app-service-contact .app-send-message p:last-of-type svg {
    height: 20px;
    margin-right: 10px;
    width: 20px;
}.app-service-contact .app-send-message p:last-of-type svg path {
    fill: rgb(218,176,177);
}@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.2;
        transform: scale(1);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-service-contact .app-send-message > * {
    animation: floatIn 0.5s ease forwards;
    opacity: 0;
}.app-service-contact .app-send-message h2 {
    animation-delay: 0.1s;
}.app-service-contact .app-send-message > p:first-of-type {
    animation-delay: 0.2s;
}.app-service-contact .app-send-message > p:last-of-type {
    animation-delay: 0.3s;
}.app-service-contact .app-send-query {
    animation-delay: 0.4s;
}.app-service-contact .app-support-now:nth-child(1) {
    animation-delay: 0.5s;
}.app-service-contact .app-support-now:nth-child(2) {
    animation-delay: 0.6s;
}.app-service-contact .app-support-now:nth-child(3) {
    animation-delay: 0.7s;
}.app-service-contact .app-support-now::after {
    content: attr(title);
    bottom: -30px;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    color: #ffffff;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-shadow: 0 1px 2px #000000;
    position: absolute;
    font-size: 16px;
}.app-service-contact .app-support-now:hover::after {
    opacity: 1;
    bottom: -25px;
}

@media (max-width: 992px) {.app-service-contact {
    padding: 60px 0;
}.app-service-contact .app-send-message {
    padding: 40px 30px;
}.app-service-contact .app-send-message h2 {
    font-size: calc(38px - 4px);
}.app-service-contact .app-send-message p {
    max-width: 100%;
}.app-service-contact .app-send-query {
    gap: 20px;
}.app-service-contact .app-support-now {
    height: 60px;
    width: 60px;
}.app-service-contact .app-support-now svg {
    width: 24px;
    height: 24px;
}
}

@media (max-width: 768px) {.app-service-contact {
    padding: 50px 0;
}.app-service-contact .app-send-message {
    padding: 30px 20px;
}.app-service-contact .app-send-message h2 {
    font-size: calc(38px - 6px);
}.app-service-contact .app-send-query {
    gap: 15px;
}.app-service-contact .app-send-message p:last-of-type {
    padding: 10px 15px;
    margin-top: 20px;
}
}

@media (max-width: 576px) {.app-service-contact {
    padding: 40px 0;
}.app-service-contact .app-send-message {
    padding: 25px 15px;
}.app-service-contact .app-send-message h2 {
    font-size: calc(38px - 8px);
}.app-service-contact .app-send-message h2::after {
    height: 2px;
    width: 30%;
}.app-service-contact .app-send-message p {
    font-size: calc(12px - 1px);
}.app-service-contact .app-send-query {
    justify-content: space-around;
    flex-wrap: wrap;
}.app-service-contact .app-support-now {
    width: 50px;
    margin-bottom: 30px;
    height: 50px;
}.app-service-contact .app-support-now svg {
    width: 20px;
    height: 20px;
}
}

@media (prefers-reduced-motion) {.app-service-contact .app-send-message::before,
    .app-service-contact .app-send-message::after,
    .app-service-contact .app-send-message > *,
    .app-service-contact .app-support-now svg {
    animation: none;
}}.app-our-mission {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: rgb(236,215,216);
}.app-our-mission::before {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    animation: pulse 15s infinite alternate;
    content: "";
    position: absolute;
    background: 
        radial-gradient(circle at 20% 20%, rgb(218,176,177,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgb(199,134,137,0.5) 0%, transparent 60%);
}.app-our-mission::after {
    height: 100%;
    top: 0;
    animation: slide 20s linear infinite;
    z-index: 1;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(218,176,177,0.5) 49.5%, rgb(218,176,177,0.5) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgb(199,134,137,0.5) 49.5%, rgb(199,134,137,0.5) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    left: 0;
    position: absolute;
    opacity: 0.1;
    width: 100%;
    content: "";
}.app-our-mission .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}.app-our-mission .app-path-edu {
    grid-template-columns: 1fr 1fr;
    display: grid;
    grid-gap: 60px;
    align-items: center;
}.app-our-mission h3 {
    display: inline-block;
    font-weight: 700;
    position: relative;
    font-size: 32px;
    color: #000000;
    margin-bottom: 30px;
    grid-column: 1 / -1;
}.app-our-mission h3::after {
    bottom: -10px;
    background: rgb(218,176,177);
    border-radius: 10px;
    position: absolute;
    transition: width 0.5s ease;
    left: 0;
    content: "";
    height: 4px;
    width: 80px;
}.app-our-mission h3:hover::after {
    width: 100%;
}.app-our-mission .app-study-growth {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 19px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    overflow: hidden;
}.app-our-mission .app-study-growth::before {
    border-radius: 10px 10px 0 0;
    left: 0;
    position: absolute;
    height: 5px;
    top: 0;
    background: linear-gradient(90deg, rgb(218,176,177), rgb(199,134,137));
    content: "";
    width: 100%;
}.app-our-mission .app-study-growth:hover {
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.app-our-mission .app-study-growth span {
    font-weight: 600;
    color: rgb(218,176,177);
    position: relative;
    display: block;
    font-size: 23px;
    padding-left: 20px;
    margin-bottom: 20px;
}.app-our-mission .app-study-growth span::before {
    border-radius: 50%;
    width: 10px;
    transform: translateY(-50%);
    left: 0;
    height: 10px;
    content: "";
    top: 50%;
    position: absolute;
    background: rgb(218,176,177);
}.app-our-mission .app-study-growth p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #000000;
}.app-our-mission .app-study-growth .app-shot {
    transition: transform 0.5s ease;
    border-radius: 19px;
    overflow: hidden;
    height: 280px;
    position: relative;
    width: 100%;
}.app-our-mission .app-study-growth .app-shot::after {
    animation: shine 3s infinite;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 100%;
    left: -100%;
    width: 50%;
    top: 0;
    content: "";
}.app-our-mission .app-value-prop {
    padding: 30px;
    display: flex;
    border-radius: 19px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
    flex-direction: column;
}.app-our-mission .app-value-prop::before {
    border-radius: 10px 10px 0 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(199,134,137), rgb(218,176,177));
    width: 100%;
    right: 0;
    content: "";
    top: 0;
    height: 5px;
}.app-our-mission .app-value-prop:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}.app-our-mission .app-value-prop p {
    line-height: 1.6;
    font-weight: 400;
    padding-left: 20px;
    color: #000000;
    border-left: 3px solid rgb(199,134,137);
    position: relative;
    font-size: 15px;
    margin-bottom: 30px;
}.app-our-mission .app-value-prop .app-knowledge-track {
    border: 5px solid #ffffff;
    border-radius: 50%;
    position: relative;
    height: 180px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 180px;
    margin: 0 auto;
    transition: transform 0.5s ease;
}.app-our-mission .app-value-prop .app-knowledge-track::before {
    animation: rotate 30s linear infinite;
    left: -15px;
    border-radius: 50%;
    content: "";
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    top: -15px;
    position: absolute;
    border: 2px dashed rgb(199,134,137,0.5);
}.app-our-mission .app-value-prop .app-knowledge-track::after {
    content: "";
    border-radius: 50%;
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    border: 1px solid rgb(218,176,177,0.5);
    top: -5px;
    left: -5px;
    position: absolute;
    animation: rotate 20s linear infinite reverse;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes slide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {.app-our-mission {
    padding: 90px 0;
}.app-our-mission .app-path-edu {
    grid-template-columns: 1fr;
    grid-gap: 40px;
}.app-our-mission .app-study-growth,
    .app-our-mission .app-value-prop {
    max-width: 600px;
    margin: 0 auto;
}.app-our-mission .app-study-growth .app-shot {
    height: 240px;
}.app-our-mission .app-value-prop .app-knowledge-track {
    width: 160px;
    height: 160px;
}
}

@media (max-width: 768px) {.app-our-mission {
    padding: 70px 0;
}.app-our-mission h3 {
    text-align: center;
    font-size: calc(32px * 0.9);
    display: block;
}.app-our-mission h3::after {
    transform: translateX(-50%);
    left: 50%;
}.app-our-mission .app-study-growth,
    .app-our-mission .app-value-prop {
    padding: 25px;
}.app-our-mission .app-study-growth span {
    font-size: calc(23px * 0.9);
}.app-our-mission .app-study-growth .app-shot {
    height: 200px;
}.app-our-mission .app-value-prop .app-knowledge-track {
    width: 140px;
    height: 140px;
}
}

@media (max-width: 576px) {.app-our-mission {
    padding: 50px 0;
}.app-our-mission .container {
    padding: 0 15px;
}.app-our-mission h3 {
    margin-bottom: 20px;
    font-size: calc(32px * 0.8);
}.app-our-mission .app-path-edu {
    grid-gap: 30px;
}.app-our-mission .app-study-growth,
    .app-our-mission .app-value-prop {
    padding: 20px;
}.app-our-mission .app-study-growth p,
    .app-our-mission .app-value-prop p {
    margin-bottom: 20px;
}.app-our-mission .app-study-growth .app-shot {
    height: 180px;
}.app-our-mission .app-value-prop .app-knowledge-track {
    width: 120px;
    height: 120px;
}.app-our-mission .app-value-prop .app-knowledge-track::before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    left: -10px;
    top: -10px;
}}header {
    background: linear-gradient(120deg, rgb(218,176,177) 0%, rgb(199,134,137) 100%);
    margin-top: 0;
    padding: 0;
    overflow: visible;
    position: relative;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
    z-index: 100;
}header::before {
    z-index: -1;
    position: absolute;
    right: 2px;
    top: 2px;
    left: 2px;
    bottom: 2px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    content: '';
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        15px 100%, 
        0 calc(100% - 15px)
    );
}header .app-site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 1.2rem 3rem;
    z-index: 5;
}header .app-nav-pagebar {
    margin-right: 2rem;
    padding: 0.7rem 1.2rem 0.7rem 1rem;
    flex: 0 0 auto;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}header .app-nav-pagebar::before {
    bottom: 3px;
    z-index: -1;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
    top: 3px;
    left: 3px;
    position: absolute;
    content: '';
    right: 3px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}header .app-nav-pagebar:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
}header .app-nav-section {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: block;
}header .app-nav-section img {
    max-height: 40px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}header .app-top-sitewrap {
    margin: 0;
    z-index: 2;
    list-style: none;
    display: flex;
    position: relative;
    padding: 0;
}header .app-first-section {
    position: relative;
    margin: 0 0.5rem;
}header .app-first-section a {
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    clip-path: polygon(
        10px 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        10px 100%,
        0 calc(100% - 10px),
        0 10px
    );
    height: 40px;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    padding: 0 1.2rem;
    display: flex;
    border: 1px solid transparent;
}header .app-first-section a::before {
    content: '';
    width: 100%;
    left: -100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    height: 100%;
    transition: left 0.7s ease;
    position: absolute;
    top: 0;
}header .app-first-section a:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
}header .app-first-section a:hover::before {
    left: 100%;
}header .app-first-section::after {
    transform: translateX(-50%);
    content: '';
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
    bottom: -5px;
    background: #ffffff;
    left: 50%;
    position: absolute;
}header .app-first-section:hover::after {
    width: 80%;
}header .app-site-nav::before {
    height: 40px;
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 10px;
    border-bottom: none;
    width: 40px;
    opacity: 0.5;
    border-right: none;
    right: 10px;
    content: '';
}header .app-site-nav::after {
    height: 40px;
    opacity: 0.5;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    bottom: 10px;
    border-left: none;
    left: 10px;
    content: '';
    position: absolute;
    border-top: none;
}header .app-page-top {
    position: relative;
    margin-top: -15px;
    z-index: 1;
    background: rgb(236,215,216);
    padding-top: 2rem;
}@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

header::after {
    right: 15px;
    top: 15px;
    box-shadow: 0 0 10px #ffffff;
    height: 8px;
    animation: pulse 2s infinite;
    width: 8px;
    content: '';
    border-radius: 50%;
    position: absolute;
    background: #ffffff;
}

@media (min-width: 1400px) {header .app-site-nav {
    max-width: 1320px;
    margin: 0 auto;
}header .app-first-section {
    margin: 0 0.7rem;
}header .app-first-section a {
    padding: 0 1.5rem;
}
}

@media (max-width: 991px) {header {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            10px 100%, 
            0 calc(100% - 10px)
        );
}header .app-site-nav {
    padding: 1rem 2rem;
    flex-wrap: wrap;
}header .app-nav-pagebar {
    margin-bottom: 0;
    margin-right: 0;
}header .app-top-sitewrap {
    justify-content: flex-end;
    margin-top: 1rem;
    flex-basis: 100%;
}header .app-first-section a {
    padding: 0 1rem;
    height: 35px;
    font-size: calc(13px - 1px);
}header .app-site-nav::before,
    header .app-site-nav::after {
    display: none;
}.app-page-top {
    margin-top: -10px;
}
}

@media (max-width: 767px) {header {
    padding: 0;
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 5px), 
            calc(100% - 5px) 100%, 
            5px 100%, 
            0 calc(100% - 5px)
        );
}header .app-site-nav {
    padding: 0.8rem 1.5rem;
}header .app-nav-pagebar {
    padding: 0.5rem 0.8rem;
    clip-path: polygon(
            0 0,
            calc(100% - 5px) 0,
            100% 5px,
            100% 100%,
            5px 100%,
            0 calc(100% - 5px)
        );
}header .app-nav-section img {
    max-height: 35px;
}header .app-top-sitewrap {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
    margin-top: 0.8rem;
}header .app-top-sitewrap::-webkit-scrollbar {
    height: 3px;
}header .app-top-sitewrap::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}header .app-first-section {
    margin: 0 0.25rem;
    flex: 0 0 auto;
}header .app-first-section a {
    white-space: nowrap;
    padding: 0 0.8rem;
    font-size: calc(13px - 2px);
    clip-path: polygon(
            5px 0,
            calc(100% - 5px) 0,
            100% 5px,
            100% calc(100% - 5px),
            calc(100% - 5px) 100%,
            5px 100%,
            0 calc(100% - 5px),
            0 5px
        );
    height: 32px;
}header .app-first-section::after {
    display: none;
}header::after {
    width: 5px;
    top: 10px;
    right: 10px;
    height: 5px;
}.app-page-top {
    margin-top: -5px;
}
}

@media (max-width: 479px) {header .app-site-nav {
    padding: 0.7rem 1.2rem;
}header .app-nav-pagebar {
    padding: 0.4rem 0.6rem;
    max-width: 120px;
}header .app-first-section a {
    height: 30px;
    padding: 0 0.6rem;
    font-size: calc(13px - 3px);
}}.app-academic-expertise {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(145deg, rgb(236,215,216) 0%, #ffffff 100%);
    overflow: hidden;
}.app-academic-expertise::before {
    width: 60%;
    top: -50%;
    opacity: 0.08;
    height: 200%;
    transform: rotate(-15deg);
    left: -20%;
    position: absolute;
    background: linear-gradient(135deg, rgb(199,134,137,0.5) 0%, transparent 80%);
    content: "";
    z-index: 0;
}.app-academic-expertise::after {
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    content: "";
    background: radial-gradient(circle at 80% 20%, rgb(218,176,177,0.5) 0%, transparent 60%);
    z-index: 0;
    opacity: 0.05;
}.app-academic-expertise .container {
    margin: 0 auto;
    z-index: 1;
    max-width: 1140px;
    padding: 0 15px;
    position: relative;
}.app-academic-expertise .app-success-stories {
    background: #ffffff;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.03);
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: grid;
    grid-template-columns: 1fr;
    border-left: 4px solid rgb(199,134,137);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-2deg);
    padding: 3rem;
}.app-academic-expertise .app-success-stories:hover {
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.09), 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: perspective(1000px) rotateY(0);
}.app-academic-expertise .app-success-stories > div:nth-child(1) {
    position: relative;
    order: 1;
    width: 100%;
}.app-academic-expertise .app-success-stories > div:nth-child(2) {
    order: 2;
}.app-academic-expertise .app-success-stories > div:nth-child(3) {
    order: 3;
}.app-academic-expertise .app-shot {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateZ(20px);
    height: 0;
    clip-path: polygon(0 0, 100% 5%, 95% 95%, 5% 100%);
    padding-bottom: 60%;
}.app-academic-expertise .app-success-stories:hover .app-shot {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateZ(30px);
}.app-academic-expertise .name {
    display: inline-block;
    transform: translateZ(15px);
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: calc(22px * 1.1);
    position: relative;
    margin: 0 0 0.5rem;
    color: #000000;
}.app-academic-expertise .name::after {
    height: 3px;
    bottom: -5px;
    left: 0;
    content: "";
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    background: rgb(199,134,137);
    width: 0;
}.app-academic-expertise .app-success-stories:hover .name::after {
    width: 100%;
}.app-academic-expertise .app-success-stories > div:nth-child(2) > div {
    letter-spacing: 0.5px;
    color: rgb(199,134,137);
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: all 0.4s ease;
    font-weight: 600;
    transform: translateZ(10px);
    font-size: calc(18px * 0.95);
}.app-academic-expertise .app-success-stories:hover > div:nth-child(2) > div {
    transform: translateZ(20px);
    opacity: 1;
}.app-academic-expertise .app-experience {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    padding-left: 1.5rem;
    margin: 0;
    transform: translateZ(5px);
    transition: transform 0.4s ease;
    position: relative;
}.app-academic-expertise .app-experience::before {
    position: absolute;
    left: 0;
    content: "";
    background: linear-gradient(to bottom, rgb(199,134,137) 0%, transparent 100%);
    width: 3px;
    height: 100%;
    top: 0;
}.app-academic-expertise .app-success-stories:hover .app-experience {
    transform: translateZ(15px);
}

@media (min-width: 768px) {.app-academic-expertise .app-success-stories {
    padding: 3.5rem;
    gap: 2.5rem;
    grid-template-columns: 300px 1fr;
    grid-template-rows: auto auto;
}.app-academic-expertise .app-success-stories > div:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}.app-academic-expertise .app-success-stories > div:nth-child(2) {
    align-self: end;
    grid-row: 1;
    grid-column: 2;
}.app-academic-expertise .app-success-stories > div:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}.app-academic-expertise .app-shot {
    height: 100%;
    padding-bottom: 0;
}.app-academic-expertise .name {
    margin-bottom: 0.75rem;
    font-size: 22px;
}.app-academic-expertise .app-experience {
    font-size: calc(18px * 1.05);
    padding-left: 2rem;
}
}

@media (min-width: 992px) {.app-academic-expertise {
    padding: 140px 0;
}.app-academic-expertise .app-success-stories {
    gap: 3rem;
    grid-template-columns: 380px 1fr;
    padding: 4rem;
    transform: perspective(1200px) rotateY(-3deg);
}.app-academic-expertise .name {
    font-size: calc(22px * 1.2);
}.app-academic-expertise .app-success-stories > div:nth-child(2) > div {
    margin-bottom: 1.5rem;
    font-size: 18px;
}.app-academic-expertise .app-experience {
    font-size: calc(18px * 1.1);
    line-height: 1.75;
}
}

@media (max-width: 767px) {.app-academic-expertise {
    padding: 80px 0;
}.app-academic-expertise .app-success-stories {
    padding: 2rem;
    transform: perspective(800px) rotateY(-1deg);
}.app-academic-expertise .app-shot {
    margin-bottom: 1.5rem;
}.app-academic-expertise .name {
    margin-bottom: 0.5rem;
}.app-academic-expertise .app-experience {
    padding-left: 1rem;
}
}

@media (max-width: 480px) {.app-academic-expertise {
    padding: 60px 0;
}.app-academic-expertise .app-success-stories {
    padding: 1.5rem;
    gap: 1.5rem;
}.app-academic-expertise .app-shot {
    padding-bottom: 75%;
}.app-academic-expertise .name {
    font-size: calc(22px * 0.95);
}.app-academic-expertise .app-success-stories > div:nth-child(2) > div {
    font-size: calc(18px * 0.9);
}.app-academic-expertise .app-experience {
    font-size: calc(18px * 0.95);
    line-height: 1.6;
}}.app-secure-habitat {
    background: linear-gradient(135deg, rgb(236,215,216) 0%, rgba(246, 246, 250, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
}.app-secure-habitat::before {
    width: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgb(218,176,177,0.5) 49%, rgb(218,176,177,0.5) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgb(199,134,137,0.5) 49%, rgb(199,134,137,0.5) 51%, transparent 52%);
    height: 100%;
    top: 0;
    background-size: 50px 50px;
    content: "";
    left: 0;
    opacity: 0.07;
    position: absolute;
    z-index: 1;
}.app-secure-habitat .container {
    background: #ffffff;
    margin: 0 auto;
    padding: 3rem;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 1140px;
    transform: perspective(1200px) rotateX(1deg);
}.app-secure-habitat h1 {
    position: relative;
    font-size: 41px;
    padding-bottom: 1rem;
    color: rgb(218,176,177);
    font-weight: 700;
    transform: translateX(-0.5rem);
    margin-bottom: 2rem;
}.app-secure-habitat h1::after {
    left: 0;
    animation: widthPulse 3s infinite alternate ease-in-out;
    transform-origin: left center;
    bottom: 0;
    height: 4px;
    content: "";
    width: 80px;
    background: linear-gradient(90deg, rgb(218,176,177) 0%, rgb(199,134,137) 100%);
    position: absolute;
}.app-secure-habitat h2 {
    padding-left: 1rem;
    color: #000000;
    border-left: 3px solid rgb(199,134,137);
    position: relative;
    font-size: 29px;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
}.app-secure-habitat h3 {
    margin: 2rem 0 1.2rem;
    color: #000000;
    font-size: calc(29px * 0.85);
    padding-left: 1rem;
    border-left: 2px solid rgb(199,134,137,0.5);
    position: relative;
    font-weight: 600;
}.app-secure-habitat h4 {
    color: #000000;
    font-weight: 600;
    margin: 1.8rem 0 1rem;
    font-size: calc(29px * 0.7);
    position: relative;
    border-left: 1px solid rgb(199,134,137,0.5);
    padding-left: 1rem;
}.app-secure-habitat p {
    margin-bottom: 1.5rem;
    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #000000;
}.app-secure-habitat p strong {
    font-weight: 600;
    color: #000000;
    position: relative;
    display: inline-block;
}.app-secure-habitat p strong::after {
    height: 8px;
    z-index: -1;
    opacity: 0.3;
    position: absolute;
    width: 100%;
    content: "";
    left: 0;
    bottom: 0;
    background-color: rgb(199,134,137,0.5);
}.app-secure-habitat ul {
    padding: 0;
    list-style-type: none;
    margin: 1.5rem 0 2rem 1.5rem;
}.app-secure-habitat li {
    font-size: 14px;
    position: relative;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    padding-left: 1.5rem;
    color: #000000;
}.app-secure-habitat li::before {
    left: 0;
    height: 8px;
    width: 8px;
    transform: rotate(45deg);
    content: "";
    border-radius: 10px;
    transition: transform 0.3s ease;
    background-color: rgb(218,176,177);
    top: 0.65rem;
    position: absolute;
}.app-secure-habitat li:hover::before {
    transform: rotate(135deg);
}.app-secure-habitat span {
    line-height: 1.8;
    padding: 0.5rem 0 1.5rem;
    display: block;
    color: #000000;
    font-size: 14px;
    font-family: Arial, sans-serif;
    position: relative;
}.app-secure-habitat span::before {
    opacity: 0.5;
    left: -1rem;
    position: absolute;
    top: 0;
    content: "";
    background: linear-gradient(to bottom, transparent, rgb(218,176,177,0.5), transparent);
    width: 3px;
    height: 100%;
}

@keyframes widthPulse {
    0% {
        width: 80px;
    }
    50% {
        width: 120px;
    }
    100% {
        width: 80px;
    }
}

@media (max-width: 992px) {.app-secure-habitat {
    padding: 3rem 1.5rem;
}.app-secure-habitat .container {
    padding: 2rem;
    transform: perspective(1000px) rotateX(0.5deg);
}.app-secure-habitat h1 {
    font-size: calc(41px * 0.9);
}.app-secure-habitat h2 {
    font-size: calc(29px * 0.9);
}
}

@media (max-width: 768px) {.app-secure-habitat {
    padding: 2rem 1rem;
}.app-secure-habitat .container {
    padding: 1.5rem;
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}.app-secure-habitat h1 {
    transform: translateX(0);
    font-size: calc(41px * 0.8);
}.app-secure-habitat h2 {
    margin: 2rem 0 1rem;
    font-size: calc(29px * 0.8);
}.app-secure-habitat h3 {
    font-size: calc(29px * 0.7);
}.app-secure-habitat h4 {
    font-size: calc(29px * 0.6);
}.app-secure-habitat p, 
    .app-secure-habitat li,
    .app-secure-habitat span {
    font-size: calc(14px * 0.95);
}.app-secure-habitat ul {
    margin-left: 0.5rem;
}
}

@media (max-width: 576px) {.app-secure-habitat {
    padding: 1.5rem 0.5rem;
}.app-secure-habitat .container {
    padding: 1.25rem;
}.app-secure-habitat h1 {
    font-size: calc(41px * 0.7);
}.app-secure-habitat h2 {
    font-size: calc(29px * 0.7);
}.app-secure-habitat h3 {
    font-size: calc(29px * 0.6);
}.app-secure-habitat h4 {
    font-size: calc(29px * 0.5);
}.app-secure-habitat p, 
    .app-secure-habitat li,
    .app-secure-habitat span {
    font-size: calc(14px * 0.9);
}.app-secure-habitat span::before {
    left: -0.75rem;
}
}