﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}html,body {
    color: #000000;
    font-family: Arial, sans-serif;
    min-height: 100%;
    height: 100%;
}.local-wrapper-template {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}a {
    color: inherit;
    text-decoration: none;
}.local-top-main {
    flex: 1 0 auto;
}.local-intern-ship {
    flex: 0 0 auto;
}svg {
    height: 30px;
    width: 30px;
}.container {
    width: 1188px;
    max-width: 100%;
    margin: auto;
}header,footer {
    width: 100%;
}::-webkit-scrollbar {
    width: 18px;
}::-webkit-scrollbar-track {
    background: linear-gradient(110deg, rgb(255, 255, 255, 0.5) 39%, rgb(196,136,166) 67%, rgb(218,177,195) 94%, rgb(218,177,195,0.5) 2%);
    box-shadow: inset -1px 5px 0px 5px rgba(0, 0, 0, 0.4);
}::-webkit-scrollbar-thumb {
    border-radius: 9999px;
    transition: all, box-shadow, transform 1.2s linear;
    min-height: 23px;
    background: linear-gradient(200deg, #ffffff 9%, rgb(255, 255, 255, 0.5) 87%, rgb(196,136,166,0.5) 67%, rgb(218,177,195) 39%, rgb(218,177,195,0.5) 9%, rgb(236,218,225) 71%);
}::-webkit-scrollbar-thumb:hover {
    transform: translateX(2px);
    box-shadow: 3px 4px 7px 2px rgba(0, 0, 0, 0.2);
    background: rgb(218,177,195);
}


@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.local-title-screen {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}.local-title-screen .local-edu-trackfast {
    display: flex;
    justify-content: flex-start;
    min-height: 100vh;
    position: relative;
    align-items: center;
}.local-title-screen .local-edu-trackfast::before {
    left: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    content: "";
    top: 0;
    background: linear-gradient(
    135deg,
    rgb(218,177,195,0.5) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
}.local-title-screen .local-team-culture {
    z-index: 2;
    display: grid;
    margin-left: 5%;
    width: 90%;
    padding: 2rem;
    grid-template-columns: 1fr;
    transform: translateY(-2vh);
    gap: 2rem;
    position: relative;
    max-width: 1200px;
}.local-title-screen .local-team-culture > div:first-child {
    position: relative;
    overflow: hidden;
}.local-title-screen .local-team-culture > div:first-child::before {
    background: rgb(196,136,166);
    transform-origin: left center;
    position: absolute;
    content: "";
    width: 60px;
    left: 0;
    animation: line-grow 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    height: 4px;
    top: 0;
}.local-title-screen .title_style_header {
    animation: slide-in 0.8s cubic-bezier(0.17, 0.67, 0.3, 1.33) 0.2s forwards;
    margin: 0;
    padding: 1.5rem 0;
    font-size: clamp(2.5rem, 5vw, 46px);
    line-height: 1.1;
    font-weight: 700;
    transform: translateX(-5px);
    opacity: 0;
    color: #ffffff;
}.local-title-screen .local-team-culture > div:nth-child(2) {
    position: relative;
    animation: fade-up 1s ease 0.6s forwards;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    gap: 1.5rem;
    display: flex;
}.local-title-screen h3 {
    line-height: 1.4;
    color: rgb(196,136,166);
    margin: 0;
    position: relative;
    padding-left: 20px;
    max-width: 800px;
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 18px);
}.local-title-screen h3::before {
    transform: scaleY(0);
    left: 0;
    background: rgb(196,136,166);
    width: 3px;
    position: absolute;
    animation: scale-y 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
    bottom: 0.5rem;
    top: 0.5rem;
    transform-origin: top center;
    content: "";
}.local-title-screen p {
    clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
    padding: 1rem 1.5rem;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
    backdrop-filter: blur(4px);
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.3, 1.33);
    font-size: clamp(1rem, 2vw, 13px);
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    max-width: 600px;
    border-left: 3px solid rgb(218,177,195);
    transform: translateX(0) translateY(0);
}.local-title-screen p:hover {
    transform: translateX(10px) translateY(-5px);
}

@keyframes line-grow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

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

@keyframes slide-in {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scale-y {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

@media (min-width: 768px) {.local-title-screen .local-team-culture {
    width: 80%;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-left: 10%;
}.local-title-screen .title_style_header {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    transform: translateX(-10px);
}.local-title-screen .local-team-culture > div:nth-child(2) {
    margin-top: 3rem;
}.local-title-screen h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}.local-title-screen p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    max-width: 500px;
}
}

@media (min-width: 1200px) {.local-title-screen .local-team-culture {
    padding: 3rem;
    margin-left: 15%;
    width: 75%;
}.local-title-screen .title_style_header {
    padding: 2rem 0;
}.local-title-screen .local-team-culture > div:first-child::before {
    height: 5px;
    width: 100px;
}.local-title-screen h3::before {
    width: 4px;
}.local-title-screen p {
    padding: 1.5rem 2rem;
    border-left: 4px solid rgb(218,177,195);
}
}

@media (max-width: 767px) {.local-title-screen .local-edu-trackfast {
    padding-top: 15vh;
    min-height: 100vh;
    align-items: flex-start;
}.local-title-screen .local-team-culture {
    padding: 1.5rem;
    gap: 1.5rem;
}.local-title-screen h3 {
    padding-left: 15px;
}.local-title-screen p {
    padding: 0.8rem 1.2rem;
}}.local-future-attendees {
    position: relative;
    background-color: #000000;
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
    background-size: 60px 60px;
}.local-future-attendees::before {
    background-image: 
        radial-gradient(circle at 50% 50%, rgb(218,177,195,0.5) 0%, transparent 35%),
        radial-gradient(circle at 80% 20%, rgb(196,136,166,0.5) 0%, transparent 25%);
    animation: rotateBackground 60s linear infinite;
    content: '';
    width: 200%;
    position: absolute;
    height: 200%;
    opacity: 0.4;
    top: -50%;
    pointer-events: none;
    left: -50%;
}@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.local-future-attendees::after {
    width: 100%;
    height: 100%;
    top: 0;
    content: '';
    box-shadow: inset 0 0 150px 50px rgba(0, 0, 0, 0.8);
    left: 0;
    position: absolute;
    pointer-events: none;
}.local-future-attendees .container {
    z-index: 5;
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1140px;
}.local-future-attendees .local-principles-list {
    padding: 0;
    overflow: visible;
    position: relative;
}.local-future-attendees h4 {
    position: relative;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgb(218,177,195,0.5), 0 0 30px rgb(218,177,195,0.5);
    margin: 0 0 70px;
    letter-spacing: 3px;
    text-align: center;
    padding-bottom: 20px;
    font-size: calc(37px * 1.2);
    font-weight: 700;
}.local-future-attendees h4::before {
    position: absolute;
    bottom: 0;
    background: rgb(218,177,195);
    box-shadow: 0 0 10px 2px rgb(218,177,195);
    transform: translateX(-50%);
    content: '';
    left: 50%;
    height: 3px;
    width: 120px;
}.local-future-attendees h4::after {
    content: '';
    background: rgb(196,136,166,0.5);
    bottom: -5px;
    left: 50%;
    height: 1px;
    position: absolute;
    transform: translateX(-50%);
    width: 200px;
}.local-future-attendees div > div {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 -50px;
    display: grid;
    perspective: 1500px;
    gap: 30px;
}.local-future-attendees p {
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 80%, 
        85% 100%, 
        0% 100%
    );
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    position: relative;
    box-shadow: 
        0 0 20px rgb(218,177,195,0.5),
        inset 0 0 10px rgb(218,177,195,0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    line-height: 1.7;
    display: flex;
    margin: 0;
    border: 1px solid rgb(218,177,195,0.5);
    align-items: flex-start;
    z-index: 1;
    padding: 30px 35px;
    border-radius: 0;
    overflow: visible;
    font-size: calc(17px * 1.05);
}.local-future-attendees p::before {
    bottom: 0;
    transition: opacity 0.3s ease;
    width: 30px;
    content: '';
    background: rgb(218,177,195);
    position: absolute;
    opacity: 0.7;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    height: 30px;
}.local-future-attendees p::after {
    z-index: -1;
    position: absolute;
    right: 25px;
    font-weight: 700;
    font-size: calc(48px * 1.2);
    top: -15px;
    content: attr(data-number);
    color: rgb(196,136,166);
    transition: all 0.3s ease;
    opacity: 0.15;
}.local-future-attendees p:nth-child(1)::after {
    content: '01';
}.local-future-attendees p:nth-child(2)::after {
    content: '02';
}.local-future-attendees p:nth-child(3)::after {
    content: '03';
}.local-future-attendees p:nth-child(4)::after {
    content: '04';
}.local-future-attendees p:nth-child(5)::after {
    content: '05';
}.local-future-attendees p:nth-child(6)::after {
    content: '06';
}.local-future-attendees p:nth-child(7)::after {
    content: '07';
}.local-future-attendees p:nth-child(8)::after {
    content: '08';
}.local-future-attendees p:nth-child(9)::after {
    content: '09';
}.local-future-attendees p:nth-child(10)::after {
    content: '10';
}.local-future-attendees p:hover {
    z-index: 10;
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgb(218,177,195,0.5),
        inset 0 0 15px rgb(218,177,195);
    border-color: rgb(218,177,195);
}.local-future-attendees p:hover::before {
    opacity: 1;
}.local-future-attendees p:hover::after {
    opacity: 0.3;
    transform: translateY(-10px) scale(1.2);
}.local-future-attendees p:nth-child(3n+1) {
    transform: translateX(-30px);
}.local-future-attendees p:nth-child(3n+3) {
    transform: translateX(30px);
}.local-future-attendees p:nth-child(3n+1):hover {
    transform: translateX(-30px) translateY(-15px) rotateX(5deg) rotateY(-5deg);
}.local-future-attendees p:nth-child(3n+3):hover {
    transform: translateX(30px) translateY(-15px) rotateX(5deg) rotateY(5deg);
}.local-future-attendees p svg {
    flex-shrink: 0;
    margin-right: 20px;
    filter: drop-shadow(0 0 8px rgb(218,177,195,0.5));
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}.local-future-attendees p:hover svg {
    transform: scale(1.2) rotate(15deg);
}.local-future-attendees p svg path {
    fill: rgb(218,177,195);
    transition: fill 0.3s ease;
}.local-future-attendees p:hover svg path {
    fill: rgb(196,136,166);
}.local-future-attendees .local-principles-list::before {
    filter: blur(2px);
    position: absolute;
    background: 
        linear-gradient(45deg, transparent 48%, rgb(196,136,166) 49%, rgb(196,136,166) 51%, transparent 52%) 0 0/20px 20px,
        linear-gradient(-45deg, transparent 48%, rgb(196,136,166) 49%, rgb(196,136,166) 51%, transparent 52%) 0 0/20px 20px;
    width: 200px;
    border-radius: 50%;
    top: -70px;
    opacity: 0.2;
    left: -100px;
    animation: rotateMesh 30s linear infinite;
    height: 200px;
    content: '';
}.local-future-attendees .local-principles-list::after {
    width: 150px;
    opacity: 0.2;
    height: 150px;
    content: '';
    bottom: -70px;
    animation: rotateMesh 30s linear infinite reverse;
    right: -70px;
    border-radius: 50%;
    filter: blur(2px);
    background: 
        linear-gradient(45deg, transparent 48%, rgb(218,177,195) 49%, rgb(218,177,195) 51%, transparent 52%) 0 0/15px 15px,
        linear-gradient(-45deg, transparent 48%, rgb(218,177,195) 49%, rgb(218,177,195) 51%, transparent 52%) 0 0/15px 15px;
    position: absolute;
}

@keyframes rotateMesh {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199px) {.local-future-attendees div > div {
    margin: 0 -30px;
}
}

@media (max-width: 991px) {.local-future-attendees {
    padding: 80px 0;
}.local-future-attendees h4 {
    font-size: calc(37px * 1.1);
    margin-bottom: 60px;
}.local-future-attendees div > div {
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 -20px;
}.local-future-attendees p {
    padding: 25px 30px;
}.local-future-attendees p svg {
    margin-right: 15px;
    width: 32px;
    height: 32px;
}.local-future-attendees p:nth-child(3n+1),
    .local-future-attendees p:nth-child(3n+3) {
    transform: none;
}.local-future-attendees p:nth-child(odd) {
    transform: translateX(-20px);
}.local-future-attendees p:nth-child(even) {
    transform: translateX(20px);
}.local-future-attendees p:nth-child(odd):hover {
    transform: translateX(-20px) translateY(-15px) rotateX(5deg);
}.local-future-attendees p:nth-child(even):hover {
    transform: translateX(20px) translateY(-15px) rotateX(5deg);
}
}

@media (max-width: 767px) {.local-future-attendees {
    padding: 70px 0;
}.local-future-attendees h4 {
    font-size: 37px;
    letter-spacing: 2px;
    margin-bottom: 50px;
}.local-future-attendees div > div {
    grid-template-columns: 1fr;
    margin: 0;
    gap: 25px;
}.local-future-attendees p {
    padding: 25px;
    transform: none !important;
}.local-future-attendees p:hover {
    transform: translateY(-10px) !important;
}.local-future-attendees .local-principles-list::before {
    left: -60px;
    width: 120px;
    top: -50px;
    height: 120px;
}.local-future-attendees .local-principles-list::after {
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
}
}

@media (max-width: 480px) {.local-future-attendees {
    padding: 60px 0;
}.local-future-attendees h4 {
    margin-bottom: 40px;
    font-size: calc(37px * 0.85);
    letter-spacing: 1px;
}.local-future-attendees p {
    font-size: 17px;
    padding: 20px;
}.local-future-attendees p svg {
    margin-right: 12px;
    height: 28px;
    width: 28px;
}.local-future-attendees p::after {
    right: 15px;
    font-size: 48px;
    top: -10px;
}}.local-learning-system {
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgb(236,218,225) 0%, 
        rgba(rgb(218,177,195,0.5), 0.05) 50%, 
        rgb(236,218,225) 100%);
    position: relative;
}.local-learning-system::before {
    left: 0;
    width: 100%;
    z-index: 1;
    top: 0;
    content: "";
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(rgb(196,136,166,0.5), 0.02) 40px,
        rgba(rgb(196,136,166,0.5), 0.02) 80px
    );
    height: 100%;
}.local-learning-system::after {
    width: 300px;
    border-radius: 50%;
    filter: blur(40px);
    top: -10%;
    position: absolute;
    right: -5%;
    content: "";
    z-index: 0;
    background: radial-gradient(
        circle at center,
        rgba(rgb(218,177,195,0.5), 0.1) 0%,
        rgba(rgb(218,177,195,0.5), 0.05) 40%,
        transparent 70%
    );
    height: 300px;
}.local-learning-system .local-principles-list {
    transform-style: preserve-3d;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    perspective: 1000px;
}.local-learning-system h2 {
    font-weight: 700;
    color: #000000;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-bottom: 40px;
    font-size: 31px;
    position: relative;
    transform: translateZ(30px);
    text-shadow: 0 1px 2px rgba(rgba(0, 0, 0, 0.5), 0.1);
}.local-learning-system h2::before {
    background: rgb(218,177,195);
    position: absolute;
    width: 80px;
    left: 0;
    content: "";
    transform-origin: left;
    bottom: -10px;
    transform: scaleX(1);
    height: 3px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.local-learning-system h2::after {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
    transform-origin: left;
    position: absolute;
    left: 80px;
    bottom: -10px;
    background: rgba(rgb(196,136,166,0.5), 0.3);
    height: 3px;
    transform: scaleX(1);
    content: "";
    width: 120px;
}.local-learning-system .local-text-overlay {
    background: linear-gradient(
        to right bottom,
        rgba(rgb(255, 255, 255, 0.5), 0.9),
        rgba(rgb(255, 255, 255, 0.5), 0.7)
    );
    box-shadow: 
        0 10px 30px -10px rgba(rgba(0, 0, 0, 0.5), 0.1),
        0 1px 4px rgba(rgba(0, 0, 0, 0.5), 0.05);
    border-left: 3px solid rgb(218,177,195);
    backdrop-filter: blur(4px);
    transform: translateZ(10px) rotateX(2deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 40px;
    position: relative;
}.local-learning-system .local-text-overlay::before {
    width: 40px;
    content: "";
    top: 20px;
    z-index: 3;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    left: -20px;
    opacity: 0.9;
    height: 40px;
    background: rgb(218,177,195);
    position: absolute;
}.local-learning-system .local-text-overlay::after {
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    z-index: -1;
    background-size: 20px 20px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 50%,
        rgba(rgb(196,136,166,0.5), 0.03) 50%,
        rgba(rgb(196,136,166,0.5), 0.03) 100%
    );
    right: 0;
    position: absolute;
}.local-learning-system p {
    color: #000000;
    line-height: 1.7;
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}.local-learning-system:hover .local-text-overlay {
    transform: translateZ(15px) rotateX(1deg);
    box-shadow: 
        0 20px 40px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
        0 1px 6px rgba(rgba(0, 0, 0, 0.5), 0.1);
}.local-learning-system:hover h2 {
    transform: translateZ(40px);
}.local-learning-system:hover h2::before {
    transform: scaleX(1.2);
}.local-learning-system:hover h2::after {
    transform: scaleX(1.1);
}

@media (max-width: 992px) {.local-learning-system {
    padding: 90px 0;
}.local-learning-system h2 {
    margin-bottom: 30px;
    font-size: calc(31px * 0.9);
}.local-learning-system .local-text-overlay {
    padding: 30px;
    transform: translateZ(5px) rotateX(1deg);
}
}

@media (max-width: 768px) {.local-learning-system {
    padding: 70px 0;
}.local-learning-system::after {
    height: 200px;
    top: -5%;
    width: 200px;
    right: -10%;
}.local-learning-system h2 {
    margin-bottom: 25px;
    font-size: calc(31px * 0.8);
    transform: translateZ(20px);
}.local-learning-system h2::before {
    width: 60px;
    height: 2px;
}.local-learning-system h2::after {
    height: 2px;
    left: 60px;
    width: 90px;
}.local-learning-system .local-text-overlay {
    padding: 25px;
    transform: translateZ(0) rotateX(0);
}.local-learning-system .local-text-overlay::before {
    left: -15px;
    width: 30px;
    height: 30px;
    top: 15px;
}.local-learning-system p {
    line-height: 1.6;
    font-size: calc(17px * 0.95);
}.local-learning-system:hover .local-text-overlay {
    transform: translateZ(0) rotateX(0);
}.local-learning-system:hover h2 {
    transform: translateZ(25px);
}
}

@media (max-width: 576px) {.local-learning-system {
    padding: 50px 0;
}.local-learning-system::after {
    height: 150px;
    width: 150px;
}.local-learning-system .local-principles-list {
    padding: 0 15px;
}.local-learning-system h2 {
    transform: translateZ(10px);
    font-size: calc(31px * 0.7);
    margin-bottom: 20px;
}.local-learning-system h2::before {
    width: 50px;
}.local-learning-system h2::after {
    left: 50px;
    width: 70px;
}.local-learning-system .local-text-overlay {
    padding: 20px;
    border-left-width: 2px;
}.local-learning-system .local-text-overlay::before {
    left: -12px;
    width: 24px;
    top: 12px;
    height: 24px;
}.local-learning-system p {
    font-size: calc(17px * 0.9);
    line-height: 1.5;
}.local-learning-system:hover h2 {
    transform: translateZ(15px);
}}.local-offer-board {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(236,218,225), #ffffff);
}.local-offer-board::before {
    content: "";
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
}.local-offer-board .container {
    padding: 0 15px;
    z-index: 2;
    max-width: 1320px;
    position: relative;
    margin: 0 auto;
}.local-offer-board .local-learn-rates {
    grid-template-columns: 1fr;
    display: grid;
    gap: 3rem;
}.local-offer-board .local-lesson-rates {
    order: 1;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.2s;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    background: linear-gradient(145deg, #ffffff, rgb(255, 255, 255, 0.5));
}.local-offer-board .local-lesson-rates h2 {
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    font-size: 34px;
    font-weight: 700;
    color: rgb(218,177,195);
}.local-offer-board .local-lesson-rates h2::after {
    left: 50%;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(218,177,195), transparent);
    bottom: -10px;
    transform: translateX(-50%);
    height: 3px;
    width: 60%;
    content: "";
}.local-offer-board .local-lesson-rates .local-trial-pricing {
    max-width: 80%;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 auto;
    color: #000000;
}.local-offer-board .local-plan-rates {
    order: 2;
    grid-template-columns: 1fr;
    gap: 2rem;
    display: grid;
}.local-offer-board .local-learn-sub {
    will-change: transform, opacity;
    animation-delay: calc(0.1s * var(--i, 1));
    text-decoration: none;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    display: block;
    transition: transform 0.4s cubic-bezier(0.2, 0.85, 0.4, 1.275);
    transform: translateY(30px);
}.local-offer-board .local-learn-sub:nth-child(1) {
    --i: 1;
}.local-offer-board .local-learn-sub:nth-child(2) {
    --i: 2;
}.local-offer-board .local-learn-sub:nth-child(3) {
    --i: 3;
}.local-offer-board .local-learn-sub:nth-child(4) {
    --i: 4;
}.local-offer-board .local-learn-sub:hover {
    transform: translateY(-5px) scale(1.02);
}.local-offer-board .local-annual-fee {
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    overflow: hidden;
    background: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
}.local-offer-board .local-learn-sub:hover .local-annual-fee {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}.local-offer-board .local-pricing-levels {
    flex-direction: column;
    position: relative;
    display: flex;
    flex-grow: 1;
    padding: 2.5rem 2rem;
    z-index: 1;
}.local-offer-board .local-pricing-levels::before {
    opacity: 0;
    z-index: -1;
    transform: translate(30px, -30px);
    background: linear-gradient(135deg, transparent 50%, rgb(218,177,195,0.5) 50%);
    right: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    content: "";
    height: 120px;
    top: 0;
    width: 120px;
}.local-offer-board .local-learn-sub:hover .local-pricing-levels::before {
    transform: translate(0, 0);
    opacity: 0.7;
}.local-offer-board .local-learn-sub h3 {
    color: #000000;
    transition: color 0.3s ease;
    position: relative;
    font-weight: 700;
    font-size: calc(24px + 0.2rem);
    margin-bottom: 1rem;
}.local-offer-board .local-learn-sub:hover h3 {
    color: rgb(218,177,195);
}.local-offer-board .local-fee-plan {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: calc(21px + 0.8rem);
    color: rgb(218,177,195);
}.local-offer-board .local-fee-plan::before {
    height: 3px;
    bottom: -5px;
    background: rgb(196,136,166);
    transition: width 0.3s ease;
    position: absolute;
    content: "";
    width: 40px;
    left: 0;
}.local-offer-board .local-learn-sub:hover .local-fee-plan::before {
    width: 80px;
}.local-offer-board .local-learn-sub p {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    -ms-word-break: break-all;
    margin-bottom: 0;
    color: #000000;
    font-size: 14px;
}.local-offer-board .local-img-item {
    height: 200px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
}.local-offer-board .local-img-item::after {
    content: "";
    position: absolute;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    inset: 0;
}.local-offer-board .local-learn-sub:hover .local-img-item {
    transform: scale(1.05);
}

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

@media (min-width: 768px) {.local-offer-board .local-plan-rates {
    grid-template-columns: repeat(2, 1fr);
}.local-offer-board .local-lesson-rates {
    padding: 3rem;
}.local-offer-board .local-pricing-levels {
    padding: 2.8rem 2.2rem;
}
}

@media (min-width: 992px) {.local-offer-board .local-learn-rates {
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}.local-offer-board .local-lesson-rates {
    justify-content: center;
    padding: 4rem 3rem;
    text-align: left;
    flex-direction: column;
    display: flex;
    height: 100%;
    order: 2;
}.local-offer-board .local-lesson-rates h2::after {
    width: 100px;
    left: 0;
    background: linear-gradient(90deg, rgb(218,177,195), transparent);
    transform: none;
}.local-offer-board .local-lesson-rates .local-trial-pricing {
    margin: 0;
    max-width: 100%;
}.local-offer-board .local-plan-rates {
    grid-template-columns: repeat(2, 1fr);
    order: 1;
}
}

@media (min-width: 1200px) {.local-offer-board .local-plan-rates {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}.local-offer-board .local-pricing-levels {
    padding: 3rem 2.5rem;
}.local-offer-board .local-lesson-rates h2 {
    font-size: calc(34px + 0.3rem);
}
}

@media (max-width: 767px) {.local-offer-board {
    padding: 4rem 0;
}.local-offer-board .local-lesson-rates h2 {
    font-size: calc(34px - 0.2rem);
}.local-offer-board .local-lesson-rates .local-trial-pricing {
    font-size: calc(14px - 0.1rem);
    max-width: 100%;
}.local-offer-board .local-learn-sub h3 {
    font-size: 24px;
}.local-offer-board .local-fee-plan {
    font-size: calc(21px + 0.5rem);
}.local-offer-board .local-img-item {
    height: 160px;
}}.local-privacy-box {
    line-height: 1.8;
    color: #000000;
    margin: 0 auto;
    background-color: rgb(236,218,225);
    border: 2px solid rgb(218,177,195);
    font-family: Arial, sans-serif;
    padding: 60px;
    max-width: 1200px;
}.local-privacy-box h1 {
    text-align: center;
    border-bottom: 2px solid rgb(196,136,166);
    margin-bottom: 25px;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
    color: rgb(218,177,195);
    letter-spacing: 1px;
}.local-privacy-box h2 {
    font-size: 35px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 40px;
    color: rgb(196,136,166);
}.local-privacy-box ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}.local-privacy-box li {
    margin-bottom: 15px;
    padding: 15px;
    font-size: 18px;
    align-items: center;
    display: flex;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}.local-privacy-box li::before {
    color: rgb(218,177,195);
    margin-right: 10px;
    content: '•';
    font-size: 1.5em;
}.local-privacy-box p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #000000;
}.local-privacy-box span {
    font-weight: 700;
    color: rgb(218,177,195);
}.local-privacy-box a {
    font-weight: 600;
    color: rgb(218,177,195);
    border-bottom: 1px solid rgb(218,177,195,0.5);
    text-decoration: none;
}.local-privacy-box a:hover {
    border-bottom: 1px solid rgb(196,136,166);
    color: rgb(196,136,166);
}
@media only screen and (max-width: 800px) {.local-privacy-box {
    padding: 30px;
}.local-privacy-box h1 {
    font-size: calc(21px * 0.8);
}.local-privacy-box h2 {
    font-size: calc(21px * 0.8);
}.local-privacy-box p {
    font-size: calc(18px * 0.9);
}.local-privacy-box li {
    padding: 10px;
}}.local-course-program-info {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: rgb(236,218,225);
}.local-course-program-info::before {
    opacity: 0.4;
    width: 300px;
    height: 300px;
    position: absolute;
    content: "";
    filter: blur(120px);
    animation: floatEffect 15s infinite alternate ease-in-out;
    z-index: 0;
    background: rgb(218,177,195,0.5);
    left: -100px;
    top: -100px;
}.local-course-program-info::after {
    z-index: 0;
    position: absolute;
    right: -100px;
    opacity: 0.3;
    bottom: -100px;
    height: 350px;
    animation: floatEffect 18s infinite alternate-reverse ease-in-out;
    background: rgb(196,136,166,0.5);
    width: 350px;
    content: "";
    filter: blur(150px);
}.local-course-program-info .container {
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
}.local-course-program-info .local-program-guide {
    background: #ffffff;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}.local-course-program-info .local-program-guide:hover {
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.08),
                -25px -25px 70px rgba(255, 255, 255, 0.9);
    transform: translateY(-10px);
}.local-course-program-info .local-img-item {
    height: 280px;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    width: 100%;
}.local-course-program-info .local-img-item::after {
    content: "";
    position: absolute;
    opacity: 0.7;
    inset: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(
        135deg,
        rgb(218,177,195,0.5) 0%,
        transparent 100%
    );
}.local-course-program-info .local-program-guide:hover .local-img-item {
    transform: scale(1.05);
}.local-course-program-info .local-program-guide:hover .local-img-item::after {
    opacity: 0.5;
}.local-course-program-info .local-text-overlay {
    padding: 40px;
    transform: translateY(-30px);
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    margin: 0 15px;
    position: relative;
}.local-course-program-info .local-text-overlay::before {
    left: 20px;
    background: rgb(218,177,195);
    content: "";
    top: -8px;
    position: absolute;
    height: 4px;
    width: 40px;
}.local-course-program-info .local-text-overlay h3 {
    transform: translateX(-10px);
    color: #000000;
    position: relative;
    font-size: calc(23px * 1.05);
    font-family: Arial, sans-serif;
    opacity: 0;
    margin-bottom: 25px;
    animation: slideIn 0.7s 0.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
    font-weight: 700;
    line-height: 1.4;
}.local-course-program-info .local-text-overlay p.description {
    position: relative;
    font-size: 14px;
    max-height: 200px;
    transform: translateY(10px);
    margin-bottom: 20px;
    color: #000000;
    animation: fadeUp 0.7s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    line-height: 1.7;
    opacity: 0;
    font-weight: 400;
    font-family: Arial, sans-serif;
    padding-right: 15px;
}.local-course-program-info .local-text-overlay p.description::-webkit-scrollbar {
    width: 4px;
}.local-course-program-info .local-text-overlay p.description::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}.local-course-program-info .local-text-overlay p.description::-webkit-scrollbar-thumb {
    background: rgb(218,177,195,0.5);
    transition: background 0.3s ease;
}.local-course-program-info .local-text-overlay p.description::-webkit-scrollbar-thumb:hover {
    background: rgb(218,177,195);
}.local-course-program-info .local-text-overlay span.description {
    display: none;
}.local-course-program-info .local-text-overlay div {
    position: relative;
}.local-course-program-info .local-text-overlay div::after {
    width: 100%;
    pointer-events: none;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    content: "";
    left: 0;
    position: absolute;
    bottom: 0;
    height: 50px;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatEffect {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@media (min-width: 768px) {.local-course-program-info .local-program-guide {
    flex-direction: row;
    max-height: 500px;
    align-items: stretch;
}.local-course-program-info .local-img-item {
    flex: 0 0 45%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    height: auto;
}.local-course-program-info .local-text-overlay {
    margin: 30px 30px 30px 0;
    justify-content: center;
    display: flex;
    transform: translateY(0) translateX(-30px);
    flex-direction: column;
    flex: 0 0 55%;
}.local-course-program-info .local-text-overlay::before {
    height: 40px;
    width: 4px;
    left: -8px;
    top: 20px;
}.local-course-program-info .local-text-overlay h3 {
    font-size: 23px;
}.local-course-program-info .local-text-overlay p.description {
    max-height: 330px;
}
}

@media (min-width: 992px) {.local-course-program-info .local-program-guide {
    max-height: 450px;
}.local-course-program-info .local-img-item {
    flex: 0 0 40%;
}.local-course-program-info .local-text-overlay {
    flex: 0 0 60%;
    padding: 50px;
}.local-course-program-info .local-text-overlay h3 {
    margin-bottom: 30px;
    font-size: calc(23px * 1.1);
}.local-course-program-info .local-text-overlay p.description {
    line-height: 1.8;
    max-height: 250px;
}
}

@media (min-width: 1200px) {.local-course-program-info {
    padding: 150px 0;
}.local-course-program-info .local-program-guide {
    max-height: 480px;
}.local-course-program-info .local-img-item {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}.local-course-program-info .local-text-overlay {
    padding: 60px;
}.local-course-program-info .local-text-overlay h3 {
    font-size: calc(23px * 1.2);
    margin-bottom: 35px;
}.local-course-program-info .local-text-overlay p.description {
    max-height: 280px;
}
}

@media (max-width: 767px) {.local-course-program-info {
    padding: 80px 0;
}.local-course-program-info .local-text-overlay {
    padding: 30px 25px;
}.local-course-program-info .local-text-overlay h3 {
    font-size: calc(18px * 1.2);
    margin-bottom: 20px;
}.local-course-program-info .local-text-overlay p.description {
    line-height: 1.6;
    font-size: calc(14px * 0.95);
    max-height: 180px;
}}.local-our-background {
    overflow: hidden;
    padding: 120px 30px;
    position: relative;
    color: #ffffff;
}.local-our-background::before {
    top: 0;
    left: 0;
    z-index: 1;
    bottom: 0;
    position: absolute;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.65) 50%, 
        rgba(0, 0, 0, 0.75) 100%);
    content: "";
}.local-our-background::after {
    content: "";
    transform: rotate(45deg) translateY(-50%);
    width: 100%;
    z-index: 2;
    background: rgb(218,177,195);
    animation: subtle-shift 20s infinite alternate ease-in-out;
    right: -50%;
    height: 100%;
    top: -50%;
    position: absolute;
    opacity: 0.15;
}.local-our-background h4 {
    text-align: center;
    z-index: 10;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 29px;
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(0);
}.local-our-background h4::after {
    left: 50%;
    width: 80px;
    transform: translateX(-50%);
    bottom: -15px;
    content: "";
    height: 3px;
    background: rgb(196,136,166);
    position: absolute;
    z-index: 10;
}.local-our-background .container {
    z-index: 10;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}.local-our-background .local-text-overlay {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    backdrop-filter: blur(10px);
    background: linear-gradient(
        to right bottom,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-left: 3px solid rgb(196,136,166);
    opacity: 1;
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
}.local-our-background .local-text-overlay::before {
    height: 120px;
    content: "";
    transform: rotate(15deg);
    border: 2px solid rgb(196,136,166,0.5);
    right: 20px;
    z-index: -1;
    opacity: 0.3;
    position: absolute;
    width: 120px;
    top: 20px;
}.local-our-background h6 {
    color: rgb(196,136,166);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: calc(22px * 1.2);
    position: relative;
    letter-spacing: 1px;
    display: inline-block;
}.local-our-background h6::after {
    transition: transform 0.4s ease;
    transform-origin: left;
    background: rgb(196,136,166);
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -8px;
    content: "";
    transform: scaleX(1);
    width: 60%;
}.local-our-background .local-text-overlay div {
    scrollbar-color: rgb(196,136,166) rgba(255, 255, 255, 0.1);
    position: relative;
    padding-right: 15px;
    overflow-y: auto;
    max-height: 400px;
    scrollbar-width: thin;
}.local-our-background .local-text-overlay div::-webkit-scrollbar {
    width: 6px;
}.local-our-background .local-text-overlay div::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}.local-our-background .local-text-overlay div::-webkit-scrollbar-thumb {
    background: rgb(196,136,166);
    border-radius: 10px;
}.local-our-background span {
    font-size: 15px;
    line-height: 1.8;
    display: block;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes subtle-shift {
    0% {
        transform: rotate(45deg) translateY(-50%);
    }
    50% {
        transform: rotate(42deg) translateY(-48%);
    }
    100% {
        transform: rotate(48deg) translateY(-52%);
    }
}

@media (min-width: 768px) {.local-our-background {
    padding: 150px 50px;
}.local-our-background h4 {
    font-size: calc(29px * 1.2);
    margin-bottom: 60px;
}.local-our-background .local-text-overlay {
    border-left: 5px solid rgb(196,136,166);
    margin: 0 auto;
    padding: 60px;
    max-width: 90%;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
}.local-our-background h6 {
    margin-bottom: 30px;
    font-size: calc(22px * 1.5);
}.local-our-background .local-text-overlay div {
    column-gap: 40px;
    max-height: none;
    column-count: 2;
}.local-our-background span {
    font-size: calc(15px * 1.1);
}
}

@media (min-width: 1200px) {.local-our-background {
    padding: 180px 0;
}.local-our-background .local-text-overlay {
    max-width: 80%;
    transform: perspective(1000px) rotateY(-2deg);
    padding: 80px;
    transition: transform 0.5s ease;
}.local-our-background .local-text-overlay:hover {
    transform: perspective(1000px) rotateY(0deg);
}.local-our-background h6::after {
    width: 40%;
}.local-our-background span {
    font-size: calc(15px * 1.2);
}.local-our-background .local-text-overlay::before {
    right: 30px;
    height: 180px;
    width: 180px;
    top: 30px;
}
}

@media (max-width: 767px) {.local-our-background {
    padding: 80px 20px;
}.local-our-background h4 {
    margin-bottom: 30px;
    font-size: 22px;
}.local-our-background .local-text-overlay {
    padding: 30px 20px;
}.local-our-background h6 {
    font-size: 22px;
    margin-bottom: 20px;
}.local-our-background span {
    line-height: 1.6;
    font-size: calc(15px * 0.9);
}.local-our-background .local-text-overlay div {
    max-height: 300px;
}}.local-contact-information {
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    background: linear-gradient(125deg, rgb(236,218,225) 0%, rgb(196,136,166,0.5) 50%, rgb(236,218,225) 100%);
    z-index: 1;
}.local-contact-information::before {
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.02) 10px, rgba(0,0,0,0.02) 20px);
    content: '';
    height: 100%;
    top: 0;
    width: 100%;
    opacity: 0.7;
    left: 0;
    z-index: -1;
    position: absolute;
}.local-contact-information::after {
    content: '';
    animation: rotate 120s linear infinite;
    opacity: 0.2;
    background: 
        conic-gradient(
            from 0deg at 50% 50%,
            transparent 0%,
            rgb(218,177,195,0.5) 5%,
            transparent 10%,
            transparent 90%,
            rgb(196,136,166,0.5) 95%,
            transparent 100%
        );
    z-index: -1;
    height: 200%;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
}.local-contact-information .local-img-item {
    filter: contrast(120%) brightness(110%) blur(5px);
    position: absolute;
    width: 100%;
    opacity: 0.15;
    height: 100%;
    left: 0;
    z-index: 0;
    top: 0;
    mix-blend-mode: luminosity;
}.local-contact-information .container {
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
}.local-contact-information h3 {
    position: relative;
    font-size: 34px;
    font-family: Arial, sans-serif;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    text-align: center;
    letter-spacing: 2px;
}.local-contact-information h3::before {
    height: 4px;
    background: rgb(218,177,195);
    border-radius: 10px;
    content: '';
    transform: translateX(-50%);
    position: absolute;
    top: -15px;
    width: 40px;
    left: 50%;
}.local-contact-information h3::after {
    bottom: -15px;
    width: 80px;
    left: 50%;
    border-radius: 10px;
    transform: translateX(-50%);
    content: '';
    height: 4px;
    position: absolute;
    background: rgb(218,177,195);
}.local-contact-information .local-support-info {
    flex-wrap: wrap;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}.local-contact-information .local-support-info::before {
    background: linear-gradient(135deg, 
        transparent 20%, 
        rgba(255, 255, 255, 0.05) 40%, 
        rgba(255, 255, 255, 0.1) 60%, 
        transparent 80%);
    content: '';
    z-index: 0;
    inset: 0;
    position: absolute;
    pointer-events: none;
}.local-contact-information .local-support-info::after {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    inset: 0;
    pointer-events: none;
    content: '';
    animation: pulse-border 4s infinite alternate;
    position: absolute;
    box-shadow: 0 0 25px rgb(218,177,195,0.5);
}.local-contact-information .local-support-message {
    padding: 50px;
    overflow: hidden;
    flex: 1 1 60%;
    background: #ffffff;
    position: relative;
}.local-contact-information .local-support-message::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 25%);
    height: 100%;
    content: '';
    z-index: 0;
    left: 0;
    width: 100%;
    top: 0;
    position: absolute;
}.local-contact-information .local-support-message::after {
    content: '';
    top: 0;
    position: absolute;
    z-index: 0;
    height: 150px;
    width: 150px;
    opacity: 0.5;
    right: 0;
    background: 
        linear-gradient(135deg, transparent 40%, rgb(218,177,195,0.5) 100%);
    border-radius: 0 0 0 150px;
}.local-contact-information .local-support-message #contact {
    z-index: 2;
    position: relative;
}.local-contact-information .local-support-message h3 {
    color: #000000;
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 22px;
}.local-contact-information .local-support-message h3::before {
    display: none;
}.local-contact-information .local-support-message h3::after {
    left: 0;
    background: rgb(218,177,195);
    width: 60px;
    transform: none;
    bottom: -10px;
}.local-contact-information .local-support-message input[type="text"],
.local-contact-information .local-support-message textarea {
    padding: 18px 25px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03) inset;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}.local-contact-information .local-support-message input[type="text"]:focus,
.local-contact-information .local-support-message textarea:focus {
    box-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.03) inset,
        0 0 0 3px rgb(218,177,195,0.5);
    outline: none;
    border-color: rgb(218,177,195);
    background-color: #ffffff;
}.local-contact-information .local-support-message textarea {
    height: 150px;
    resize: vertical;
}.local-contact-information .local-support-message .local-reach-support {
    align-items: flex-start;
    margin-bottom: 30px;
    display: flex;
}.local-contact-information .local-support-message .local-reach-support input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.local-contact-information .local-support-message .local-reach-support label {
    font-size: calc(14px - 2px);
    color: #000000;
    line-height: 1.5;
    position: relative;
    padding-left: 38px;
    cursor: pointer;
}.local-contact-information .local-support-message .local-reach-support label::before {
    width: 24px;
    background-color: rgba(0, 0, 0, 0.02);
    top: 2px;
    height: 24px;
    left: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    content: '';
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) inset;
    border-radius: 10px;
}.local-contact-information .local-support-message .local-reach-support label::after {
    position: absolute;
    background-color: rgb(218,177,195);
    transition: all 0.3s ease;
    height: 15px;
    opacity: 0;
    transform: scale(0.6);
    width: 15px;
    border-radius: calc(10px - 2px);
    left: 5px;
    content: '';
    top: 2px;
}.local-contact-information .local-support-message .local-reach-support input[type="checkbox"]:checked + label::before {
    border-color: rgb(218,177,195);
}.local-contact-information .local-support-message .local-reach-support input[type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}.local-contact-information .local-support-message .local-reach-support a {
    transition: color 0.3s ease;
    font-weight: 600;
    color: rgb(218,177,195);
    position: relative;
    text-decoration: none;
}.local-contact-information .local-support-message .local-reach-support a::after {
    height: 1px;
    transform-origin: right;
    bottom: -2px;
    position: absolute;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    background-color: rgb(218,177,195);
    content: '';
    width: 100%;
}.local-contact-information .local-support-message .local-reach-support a:hover {
    color: rgb(196,136,166);
}.local-contact-information .local-support-message .local-reach-support a:hover::after {
    transform-origin: left;
    background-color: rgb(196,136,166);
    transform: scaleX(1);
}.local-contact-information .local-support-message .local-inquiry-widget {
    padding: 16px 35px;
    background: linear-gradient(135deg, rgb(218,177,195) 0%, rgb(196,136,166) 100%);
    font-size: 14px;
    border-radius: 20px;
    overflow: hidden;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgb(218,177,195,0.5),
        0 0 0 1px rgb(218,177,195,0.5) inset;
    letter-spacing: 1px;
    color: #ffffff;
    display: inline-block;
    border: none;
    position: relative;
    font-weight: 600;
}.local-contact-information .local-support-message .local-inquiry-widget::before {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 100%;
    content: '';
    top: 0;
    left: -100%;
    transition: all 0.5s ease;
    width: 100%;
}.local-contact-information .local-support-message .local-inquiry-widget::after {
    content: '';
    bottom: 0;
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    opacity: 0.5;
    height: 3px;
    left: 0;
    animation: glow 2s infinite;
}.local-contact-information .local-support-message .local-inquiry-widget:hover {
    box-shadow: 
        0 8px 25px rgb(218,177,195,0.5),
        0 0 0 1px rgb(218,177,195) inset;
    background: linear-gradient(135deg, rgb(196,136,166) 0%, rgb(218,177,195) 100%);
    transform: translateY(-3px);
}.local-contact-information .local-support-message .local-inquiry-widget:hover::before {
    left: 100%;
}.local-contact-information .local-connect-widget {
    position: relative;
    padding: 50px;
    flex: 1 1 40%;
    background: linear-gradient(135deg, rgb(218,177,195) 0%, rgb(196,136,166) 100%);
    overflow: hidden;
}.local-contact-information .local-connect-widget::before {
    height: 100%;
    opacity: 1;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    z-index: 0;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    content: '';
}.local-contact-information .local-connect-widget::after {
    z-index: 0;
    width: 100%;
    animation: shine 8s infinite linear;
    background: 
        linear-gradient(135deg, transparent 25%, rgba(255, 255, 255, 0.05) 50%, transparent 75%);
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    content: '';
}.local-contact-information .local-connect-widget h4 {
    color: #ffffff;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: 40px;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 22px;
}.local-contact-information .local-connect-widget h4::after {
    bottom: -10px;
    position: absolute;
    border-radius: 10px;
    background: #ffffff;
    width: 60px;
    left: 0;
    content: '';
    height: 3px;
}.local-contact-information .local-connect-widget .local-feedback-block {
    z-index: 1;
    padding: 0;
    margin: 0;
    position: relative;
    list-style: none;
}.local-contact-information .local-connect-widget .local-feedback-block li {
    padding-bottom: 20px;
    display: flex;
    position: relative;
    margin-bottom: 30px;
    align-items: flex-start;
}.local-contact-information .local-connect-widget .local-feedback-block li:not(:last-child)::after {
    content: '';
    height: 1px;
    width: 100%;
    bottom: 0;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}.local-contact-information .local-connect-widget .local-feedback-block li svg {
    height: 26px;
    margin-right: 20px;
    position: relative;
    width: 26px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}.local-contact-information .local-connect-widget .local-feedback-block li svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}.local-contact-information .local-connect-widget .local-feedback-block li:hover svg {
    transition: transform 0.3s ease;
    transform: scale(1.1);
}.local-contact-information .local-connect-widget .local-feedback-block li:hover svg path {
    fill: rgba(255, 255, 255, 0.9);
}.local-contact-information .local-connect-widget .local-feedback-block li span {
    position: relative;
    color: #ffffff;
    line-height: 1.5;
    font-size: 14px;
}.local-contact-information .local-connect-widget .local-feedback-block li a {
    position: relative;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}.local-contact-information .local-connect-widget .local-feedback-block li a::after {
    content: '';
    height: 1px;
    transform-origin: right;
    transform: scaleX(0);
    width: 100%;
    transition: transform 0.3s ease;
    position: absolute;
    background-color: #ffffff;
    left: 0;
    bottom: -2px;
}.local-contact-information .local-connect-widget .local-feedback-block li a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}.local-contact-information .local-connect-widget .local-feedback-block li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 15px rgb(218,177,195,0.5);
    }
    50% {
        box-shadow: 0 0 25px rgb(196,136,166,0.5);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@media (max-width: 992px) {.local-contact-information {
    padding: 80px 0;
}.local-contact-information .container {
    padding: 0 20px;
}.local-contact-information .local-support-info {
    flex-direction: column;
}.local-contact-information .local-support-message,
    .local-contact-information .local-connect-widget {
    flex: 1 1 100%;
}.local-contact-information .local-support-message {
    padding: 40px;
}.local-contact-information .local-connect-widget {
    padding: 40px;
}
}

@media (max-width: 768px) {.local-contact-information {
    padding: 60px 0;
}.local-contact-information h3 {
    font-size: calc(34px - 4px);
    margin-bottom: 40px;
}.local-contact-information .local-support-message h3,
    .local-contact-information .local-connect-widget h4 {
    font-size: calc(22px - 2px);
    margin-bottom: 30px;
}.local-contact-information .local-support-message input[type="text"],
    .local-contact-information .local-support-message textarea {
    margin-bottom: 20px;
    padding: 15px 20px;
}.local-contact-information .local-support-message textarea {
    height: 120px;
}.local-contact-information .local-support-message .local-inquiry-widget {
    padding: 14px 30px;
    font-size: calc(14px - 1px);
}.local-contact-information .local-connect-widget .local-feedback-block li {
    margin-bottom: 25px;
    padding-bottom: 15px;
}.local-contact-information .local-connect-widget .local-feedback-block li svg {
    width: 22px;
    margin-right: 15px;
    height: 22px;
}
}

@media (max-width: 576px) {.local-contact-information {
    padding: 40px 0;
}.local-contact-information .local-support-message,
    .local-contact-information .local-connect-widget {
    padding: 30px 20px;
}.local-contact-information h3 {
    margin-bottom: 30px;
    font-size: calc(34px - 6px);
}.local-contact-information .local-support-message .local-reach-support label {
    font-size: calc(14px - 3px);
}.local-contact-information .local-connect-widget .local-feedback-block li:not(:last-child) {
    padding-bottom: 12px;
    margin-bottom: 20px;
}}header .top_plank {
    color:  #ffffff;
    background: rgb(218,177,195);
}header .top_plank .local-edu-panel div svg, header .top_plank .local-edu-panel div svg path {
    fill: #ffffff;
}header .top_plank .local-edu-panel div span {
    color: #ffffff;
}header .top_plank .local-edu-panel {
    width: 100%;
    line-height: 21px;
    flex-wrap: wrap;
    display: flex;
    font-size: 13px;
    align-items: center;
    padding: 15px 0 10px 0;
    justify-content: flex-start;
}header .top_plank .local-edu-panel div {
    justify-content: flex-start;
    display: flex;
    align-items: center;
    margin-right: 24px;
}header .top_plank .local-edu-panel div img, header .top_plank .local-edu-panel div svg {
    width: 16px;
    margin-right: 8px;
    height: 16px;
}footer {
    position: relative;
    width: 100%;
}footer .local-intern-ship {
    padding: 100px 0 30px;
    position: relative;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #2c3e50;
}footer .local-intern-ship::before {
    position: absolute;
    background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, 
                      rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
    content: "";
    left: 0;
    width: 100%;
    top: 0;
    opacity: 0.1;
    background-size: 60px 60px;
    height: 100%;
}footer .local-class-guide {
    position: relative;
    z-index: 1;
}footer .local-team-contact {
    display: grid;
    position: relative;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: -70px auto 60px;
}footer .info_item {
    border-radius: 10px;
    display: flex;
    padding: 0 20px;
    overflow: hidden;
    background-color: #ffffff;
    height: 100px;
    transition: all 0.3s ease;
    position: relative;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}footer .info_item:nth-child(even) {
    transform: translateY(30px);
}footer .info_item::before {
    content: "";
    width: 6px;
    background-color: rgb(218,177,195);
    position: absolute;
    transition: height 0.3s ease, top 0.3s ease;
    height: 50%;
    left: 0;
    top: 25%;
}footer .info_item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
}footer .info_item:hover::before {
    height: 100%;
    top: 0;
}footer .info_item svg {
    fill: rgb(218,177,195);
    width: 22px;
    height: 22px;
    z-index: 1;
    flex-shrink: 0;
    position: relative;
    margin-right: 15px;
}footer .info_item p,
footer .info_item a {
    position: relative;
    color: #2c3e50;
    font-size: 13px;
    z-index: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}footer .info_item a:hover {
    color: rgb(218,177,195);
}footer .text_main_holder {
    grid-template-columns: 1fr;
    position: relative;
    gap: 30px;
    display: grid;
}footer .local-head-sitewrap, footer .subscribe_holder {
    padding: 30px;
    transition: all 0.3s ease;
    border-radius: 15px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
}footer .local-head-sitewrap:hover, footer .subscribe_holder:hover {
    background-color: rgba(255, 255, 255, 0.08);
}footer .local-nav-mentor {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}footer .local-head-sitewrap svg {
    margin-bottom: 20px;
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}footer .local-career-help {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}footer .local-nav-mentor h5 {
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    font-size: 20px;
    grid-column: 1 / -1;
    font-weight: 600;
}footer .local-nav-mentor h5::after {
    content: "";
    height: 2px;
    background-color: rgb(218,177,195);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
}footer .local-head-bar {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 15px;
}footer .local-head-bar:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}footer .local-head-bar a {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    padding: 8px 0;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-size: 13px;
}footer .local-head-bar a:last-child {
    border-bottom: none;
}footer .local-head-bar a::before {
    right: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    content: "→";
    position: absolute;
    opacity: 0;
    transform: translateX(-10px);
}footer .local-head-bar a:hover {
    color: #ffffff;
    padding-left: 5px;
}footer .local-head-bar a:hover::before {
    transform: translateX(0);
    opacity: 1;
}footer .subscribe_holder h5 {
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    position: relative;
}footer .subscribe_holder h5::after {
    bottom: 0;
    position: absolute;
    width: 50px;
    background-color: rgb(218,177,195);
    content: "";
    left: 0;
    height: 2px;
}footer .subscribe_holder p {
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}footer .input_holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}footer .input_holder input[type="email"]:focus {
    border-color: rgb(218,177,195);
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .local-subscribe-box {
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    background-color: rgb(218,177,195);
    padding: 15px;
}footer .local-subscribe-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(196,136,166);
    transform: translateY(-3px);
}footer .local-design-res {
    margin-top: 50px;
    position: relative;
    text-align: center;
}footer .local-footer-address {
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    border-radius: 30px;
    font-size: 13px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
}

@media (min-width: 768px) {footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 2fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .local-subscribe-box {
    white-space: nowrap;
}
}

@media (max-width: 991px) {footer .info_item:nth-child(even) {
    transform: translateY(15px);
}footer .local-nav-mentor {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}

@media (max-width: 767px) {footer .local-intern-ship {
    padding: 70px 0 30px;
}footer .local-team-contact {
    margin-top: 0;
    margin-bottom: 40px;
}footer .info_item {
    height: auto;
    padding: 15px 20px;
}footer .info_item:nth-child(even) {
    transform: none;
}footer .local-head-sitewrap, footer .subscribe_holder {
    padding: 25px 20px;
}footer .local-nav-mentor h5, footer .subscribe_holder h5 {
    margin-bottom: 15px;
}footer .local-design-res {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .local-intern-ship {
    padding: 50px 0 20px;
}footer .local-head-bar {
    padding: 15px;
}footer .local-nav-mentor h5, footer .subscribe_holder h5 {
    font-size: calc(20px - 2px);
}footer .input_holder input[type="email"],
    footer .local-subscribe-box {
    padding: 12px;
}}.local-customer-reviews {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(236,218,225) 0%, rgba(rgb(218,177,195,0.5), 0.05) 100%);
}.local-customer-reviews::before {
    height: 300px;
    right: -50px;
    background: radial-gradient(circle, rgb(218,177,195) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    top: -50px;
    width: 300px;
    opacity: 0.05;
    position: absolute;
    content: "";
}.local-customer-reviews::after {
    left: -100px;
    border-radius: 50%;
    height: 400px;
    opacity: 0.05;
    z-index: 0;
    width: 400px;
    background: radial-gradient(circle, rgb(196,136,166) 0%, transparent 70%);
    content: "";
    bottom: -100px;
    position: absolute;
}.local-customer-reviews .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}.local-customer-reviews h2 {
    position: relative;
    transform: perspective(1000px) translateZ(0);
    color: #000000;
    transition: transform 0.5s ease-out;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}.local-customer-reviews h2::after {
    width: 80px;
    height: 3px;
    left: 50%;
    content: "";
    background: linear-gradient(90deg, rgb(218,177,195), rgb(196,136,166));
    bottom: -15px;
    position: absolute;
    transform: translateX(-50%) scaleX(0.7);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.local-customer-reviews h2:hover::after {
    transform: translateX(-50%) scaleX(1);
}.local-customer-reviews .local-success-ratings {
    padding: 0;
    display: grid;
    list-style: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0;
}.local-customer-reviews .local-alumni-feedback {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    padding: 30px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transform: translateY(0);
    box-shadow: 0 8px 30px rgba(rgba(0, 0, 0, 0.5), 0.08);
}.local-customer-reviews .local-alumni-feedback::before {
    position: absolute;
    content: "";
    top: -30px;
    font-family: serif;
    line-height: 1;
    font-size: 150px;
    z-index: 0;
    right: 20px;
    color: rgba(rgb(218,177,195,0.5), 0.05);
}.local-customer-reviews .local-alumni-feedback:hover {
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.12);
    transform: translateY(-8px);
}.local-customer-reviews .local-alumni-feedback div {
    display: flex;
    z-index: 2;
    position: relative;
    margin-bottom: 15px;
    align-items: center;
}.local-customer-reviews .local-alumni-feedback img {
    margin-right: 15px;
    height: 60px;
    width: 60px;
    box-shadow: 0 4px 10px rgba(rgba(0, 0, 0, 0.5), 0.1);
    border: 3px solid #ffffff;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease-out;
}.local-customer-reviews .local-alumni-feedback:hover img {
    transform: scale(1.05);
}.local-customer-reviews .local-alumni-feedback h4 {
    margin: 0;
    position: relative;
    color: #000000;
    font-size: calc(18px * 0.9);
    font-weight: 600;
}.local-customer-reviews .local-alumni-feedback h4::after {
    left: 0;
    position: absolute;
    height: 2px;
    content: "";
    transition: width 0.4s ease;
    background: linear-gradient(90deg, rgb(218,177,195), transparent);
    bottom: -5px;
    width: 0;
}.local-customer-reviews .local-alumni-feedback:hover h4::after {
    width: 100%;
}.local-customer-reviews .local-alumni-feedback .description {
    position: relative;
    margin: 0;
    color: #000000;
    line-height: 1.6;
    font-size: 15px;
    z-index: 2;
}.local-customer-reviews .local-alumni-feedback:nth-child(odd) {
    background: linear-gradient(to bottom right, #ffffff, rgba(rgb(218,177,195,0.5), 0.03));
}.local-customer-reviews .local-alumni-feedback:nth-child(even) {
    background: linear-gradient(to bottom left, #ffffff, rgba(rgb(196,136,166,0.5), 0.03));
}.local-customer-reviews a {
    background: linear-gradient(135deg, rgb(218,177,195) 0%, rgb(196,136,166) 100%);
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-block;
    border-radius: 10px;
    transform: translateZ(0);
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    margin-top: 50px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 30px;
}.local-customer-reviews a::before {
    top: 0;
    content: "";
    width: 100%;
    transition: opacity 0.4s ease;
    z-index: 0;
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgb(196,136,166) 0%, rgb(218,177,195) 100%);
    opacity: 0;
    left: 0;
}.local-customer-reviews a:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {.local-customer-reviews {
    padding: 80px 0;
}.local-customer-reviews h2 {
    margin-bottom: 40px;
    font-size: calc(38px * 0.9);
}.local-customer-reviews .local-success-ratings {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (max-width: 767px) {.local-customer-reviews {
    padding: 60px 0;
}.local-customer-reviews h2 {
    font-size: calc(38px * 0.8);
    margin-bottom: 30px;
}.local-customer-reviews .local-success-ratings {
    gap: 20px;
    grid-template-columns: 1fr;
}.local-customer-reviews .local-alumni-feedback {
    padding: 25px;
}.local-customer-reviews .local-alumni-feedback img {
    height: 50px;
    width: 50px;
}
}

@media (max-width: 480px) {.local-customer-reviews {
    padding: 40px 0;
}.local-customer-reviews h2 {
    margin-bottom: 25px;
    font-size: calc(38px * 0.7);
}.local-customer-reviews .local-alumni-feedback {
    padding: 20px;
}.local-customer-reviews .local-alumni-feedback img {
    width: 45px;
    height: 45px;
}.local-customer-reviews .local-alumni-feedback .description {
    font-size: calc(15px * 0.95);
}
}

@media (min-width: 1200px) {.local-customer-reviews .local-success-ratings {
    grid-template-columns: repeat(4, 1fr);
}.local-customer-reviews .local-alumni-feedback:hover {
    transform: translateY(-12px) scale(1.03);
}
}

@media (hover: none) {.local-customer-reviews .local-alumni-feedback:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(rgba(0, 0, 0, 0.5), 0.08);
}.local-customer-reviews .local-alumni-feedback:hover img {
    transform: none;
}.local-customer-reviews .local-alumni-feedback:hover h4::after {
    width: 0;
}
}

@media (prefers-reduced-motion: reduce) {.local-customer-reviews .local-alumni-feedback,
    .local-customer-reviews .local-alumni-feedback img,
    .local-customer-reviews h2::after,
    .local-customer-reviews .local-alumni-feedback h4::after,
    .local-customer-reviews a,
    .local-customer-reviews a::before {
    transition: none;
}}header {
    z-index: 99;
    position: relative;
    background: linear-gradient(to bottom, rgb(236,218,225), rgba(0, 0, 0, 0.5));
    overflow: visible;
    width: 100%;
}header::before {
    opacity: 0.1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 6px
    );
}header .local-head-lead {
    position: relative;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
}header .local-head-lead::before {
    position: absolute;
    background: linear-gradient(to right, transparent, rgb(218,177,195), transparent);
    content: "";
    left: 10%;
    bottom: 0;
    width: 80%;
    height: 1px;
}header .local-head-lead .local-head-sitewrap {
    margin-right: 40px;
    position: relative;
    z-index: 2;
}header .local-head-lead .local-head-sitewrap .local-nav-header {
    display: block;
    padding: 5px;
    position: relative;
}header .local-head-lead .local-head-sitewrap .local-nav-header::before {
    opacity: 0;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    border-radius: 10px;
    z-index: -1;
    bottom: -5px;
    right: -5px;
    left: -5px;
    top: -5px;
    content: "";
}header .local-head-lead .local-head-sitewrap .local-nav-header:hover::before {
    opacity: 0.1;
    transform: scale(1);
}header .local-head-lead .local-head-sitewrap .local-nav-header svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    height: 45px;
    width: auto;
}header .local-head-lead .local-nav-mentor {
    padding: 0;
    display: flex;
    list-style: none;
    margin: 0;
    perspective: 1000px;
}header .local-head-lead .local-nav-mentor .local-main-core {
    transform-style: preserve-3d;
    position: relative;
    margin: 0;
}header .local-head-lead .local-nav-mentor .local-main-core a {
    display: block;
    padding: 12px 20px;
    transform-style: preserve-3d;
    text-transform: uppercase;
    color: #000000;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, transparent, transparent);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
}header .local-head-lead .local-nav-mentor .local-main-core a::before,
header .local-head-lead .local-nav-mentor .local-main-core a::after {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    content: "";
    position: absolute;
    transition: all 0.3s ease;
}header .local-head-lead .local-nav-mentor .local-main-core a::before {
    background: linear-gradient(to bottom, rgb(218,177,195,0.5), transparent);
    opacity: 0;
    transform: translateZ(-1px) rotateX(10deg);
    transform-origin: top center;
}header .local-head-lead .local-nav-mentor .local-main-core a::after {
    transform-origin: bottom center;
    opacity: 0;
    background: linear-gradient(to top, rgb(196,136,166,0.5), transparent);
    transform: translateZ(-2px) rotateX(-10deg);
}header .local-head-lead .local-nav-mentor .local-main-core:hover a {
    transform: translateZ(10px);
    color: rgb(218,177,195);
}header .local-head-lead .local-nav-mentor .local-main-core:hover a::before,
header .local-head-lead .local-nav-mentor .local-main-core:hover a::after {
    opacity: 0.1;
}header .local-head-lead .local-nav-mentor .local-main-core:hover a::before {
    transform: translateZ(-5px) rotateX(15deg);
}header .local-head-lead .local-nav-mentor .local-main-core:hover a::after {
    transform: translateZ(-10px) rotateX(-15deg);
}

@media (max-width: 992px) {header .local-head-lead {
    padding: 15px;
    flex-direction: column;
}header .local-head-lead .local-head-sitewrap {
    margin: 0 0 15px 0;
}header .local-head-lead .local-nav-mentor {
    flex-wrap: wrap;
    perspective: none;
    justify-content: center;
    width: 100%;
}header .local-head-lead .local-nav-mentor .local-main-core a {
    transform-style: flat;
    font-size: calc(14px - 1px);
    padding: 10px 15px;
}header .local-head-lead .local-nav-mentor .local-main-core:hover a {
    transform: none;
}header .local-head-lead .local-nav-mentor .local-main-core a::before,
    header .local-head-lead .local-nav-mentor .local-main-core a::after {
    display: none;
}
}

@media (max-width: 767px) {header .local-head-lead .local-nav-mentor .local-main-core a {
    padding: 8px 12px;
    font-size: calc(14px - 2px);
}}.local-cookie-alert-message {
    z-index: 90;
    border-top: 2px solid rgb(218,177,195);
    bottom: 0;
    width: 100%;
    background: rgb(236,218,225);
    position: fixed;
}.local-cookie-apply {
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    display: flex;
}#local-userPrivacyDialog {
    display: none;
}#local-userPrivacyDialog:checked ~ .local-cookie-alert-message {
    opacity: 0;
    visibility: hidden;
}.local-cookie-alert-message h5 {
    margin-bottom: 6px;
    font-size: 22px;
}.local-cookie-alert-message p {
    font-size: 18px;
}.local-cookies-terms {
    margin-right: 10px;
    flex-shrink: 0;
}.local-cookies-terms svg, .local-cookies-terms svg path, .local-cookies-terms img {
    width: 100px;
    height: 100px;
    fill: rgb(218,177,195);
}.local-cookie-compl {
    border-bottom: 2px solid rgb(218,177,195);
    cursor: pointer;
    text-align: center;
    line-height: 35px;
    text-decoration: none;
    color: rgb(218,177,195);
    white-space: nowrap;
    font-size: 24px;
    min-width: 120px;
    flex-shrink: 0;
    margin-left: 10px;
}.local-cookie-alert-message p a {
    text-decoration: none;
    color: rgb(218,177,195);
}
@media only screen and (max-width: 1200px) {.local-cookie-alert-message {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.local-cookies-terms {
    display: none;
}.local-cookie-apply {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}.local-cookie-alert-message h5 {
    text-align: center;
}.local-cookie-alert-message p {
    text-align: center;
}.local-consent-ack {
    margin-bottom: 20px;
}body .local-wrapper-template .local-cookie-compl {
    margin-bottom: 10px;
    margin-left: 0;
}}
.local-wrapper-template .local-cookie-alert-message {
    border: none;
    background: #ffffff;
    box-shadow: rgb(218,177,195,0.5) 0px 0px 40px 39px;
}.local-wrapper-template .local-cookie-compl {
    padding: 10px;
    margin-left: 30px;
    border: none;
    background: rgb(218,177,195);
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
}.local-wrapper-template .local-cookies-terms {
    justify-content: center;
    border-radius: 50%;
    background:rgb(218,177,195);
    height: 80px;
    display: flex;
    align-items: center;
    width: 80px;
}.local-wrapper-template .local-cookies-terms svg, .local-wrapper-template .local-cookies-terms svg path, .local-wrapper-template .local-cookies-terms img {
    height: 40px;
    width: 40px;
    fill:#000000;
}.local-wrapper-template .local-consent-ack h5, .local-wrapper-template .local-consent-ack p {
    color: #000000;
}
@media only screen and (max-width: 800px){.local-wrapper-template .local-cookies-terms {
    margin-bottom: 14px;
    margin: 0;
}}.local-test-drive {
    overflow: hidden;
    padding: 130px 0;
    background: linear-gradient(135deg, rgb(196,136,166,0.5) 0%, rgb(236,218,225) 100%);
    position: relative;
}.local-test-drive::before {
    background-size: 20px 20px;
    top: 0;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    height: 100%;
    opacity: 0.03;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    background: 
        linear-gradient(45deg, rgb(236,218,225) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(236,218,225) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(236,218,225) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(236,218,225) 75%);
    content: '';
}.local-test-drive .local-principles-list {
    gap: 30px;
    z-index: 10;
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}.local-test-drive .container p {
    transition: transform 0.5s ease;
    padding: 50px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.01);
    line-height: 1.4;
    background: #ffffff;
    color: #000000;
    margin: 0;
    font-weight: 700;
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateZ(0);
    position: relative;
    z-index: 5;
    border-radius: 18px;
    font-size: 35px;
}.local-test-drive .local-inquiry-widget {
    overflow: hidden;
    transition: all 0.5s ease;
    text-decoration: none;
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateZ(0);
    font-weight: 600;
    position: relative;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    background: rgb(218,177,195);
    border-radius: 18px;
    padding: 50px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.01);
    align-items: center;
    justify-content: center;
    z-index: 5;
}.local-test-drive .local-inquiry-widget::before {
    z-index: -1;
    opacity: 0;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgb(196,136,166) 0%, transparent 60%);
    height: 200%;
    width: 200%;
    position: absolute;
    transition: opacity 0.5s ease;
    content: '';
}.local-test-drive .container p:hover,
.local-test-drive .local-inquiry-widget:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(30px);
}.local-test-drive .local-inquiry-widget:hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}.local-test-drive .local-inquiry-widget:hover::before {
    opacity: 0.3;
    animation: pulse-bg 3s infinite;
}.local-test-drive::after {
    position: absolute;
    opacity: 0.3;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        rgb(218,177,195,0.5),
        rgb(196,136,166,0.5)
    );
    width: 300px;
    bottom: -50px;
    filter: blur(80px);
    z-index: 1;
    content: '';
    right: -50px;
    height: 300px;
}

@keyframes pulse-bg {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 991px) {.local-test-drive {
    padding: 90px 0;
}.local-test-drive .container p {
    font-size: calc(18px * 1.2);
    padding: 40px;
}.local-test-drive .local-inquiry-widget {
    padding: 40px;
}
}

@media (max-width: 767px) {.local-test-drive {
    padding: 70px 0;
}.local-test-drive .local-principles-list {
    grid-template-columns: 1fr;
}.local-test-drive .container p {
    padding: 30px;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0);
    font-size: 18px;
}.local-test-drive .local-inquiry-widget {
    padding: 25px;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0);
}.local-test-drive .container p:hover,
    .local-test-drive .local-inquiry-widget:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(10px);
}
}

@media (max-width: 480px) {.local-test-drive {
    padding: 50px 0;
}.local-test-drive .container p {
    padding: 25px 20px;
    font-size: calc(15px * 1.2);
}.local-test-drive .local-inquiry-widget {
    padding: 20px;
    font-size: calc(18px * 0.9);
}}.local-teacher-profile {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(236,218,225) 0%, rgb(196,136,166,0.5) 100%);
    overflow: hidden;
}.local-teacher-profile::before {
    opacity: 0.3;
    right: -5%;
    animation: floating 15s ease-in-out infinite;
    transform-origin: center;
    width: 40%;
    content: "";
    filter: blur(60px);
    position: absolute;
    height: 40%;
    z-index: 0;
    background: rgb(218,177,195,0.5);
    top: -5%;
}.local-teacher-profile::after {
    width: 30%;
    transform-origin: center;
    bottom: -5%;
    filter: blur(50px);
    left: -5%;
    position: absolute;
    opacity: 0.2;
    content: "";
    height: 30%;
    background: rgb(196,136,166,0.5);
    animation: floating 18s ease-in-out infinite reverse;
    z-index: 0;
}.local-teacher-profile .container {
    padding: 0 1.5rem;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
}.local-teacher-profile .local-alumni-feedback {
    opacity: 0;
    grid-template-columns: 1fr;
    display: grid;
    border-radius: 4px;
    transform-style: preserve-3d;
    gap: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    transform: perspective(1000px) rotateX(2deg);
}.local-teacher-profile .local-alumni-feedback:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 
                0 8px 20px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transform: perspective(1000px) rotateX(0deg);
}.local-teacher-profile .local-alumni-feedback > div:first-child {
    width: 100%;
    position: relative;
    margin: 0 auto;
    max-width: 280px;
}.local-teacher-profile .local-alumni-feedback .local-img-item {
    height: 280px;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 3px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    animation: fadeInLeft 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 
                0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(30px);
}.local-teacher-profile .local-alumni-feedback .local-img-item::before {
    left: 0;
    position: absolute;
    content: "";
    z-index: 1;
    background: linear-gradient(
        to bottom,
        transparent 65%,
        rgba(rgb(218,177,195), 0.2) 100%
    );
    top: 0;
    width: 100%;
    height: 100%;
}.local-teacher-profile .local-alumni-feedback .local-img-item::after {
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        transparent 80%
    );
    height: 120%;
    left: -10%;
    width: 120%;
    opacity: 0;
    content: "";
    transition: opacity 0.5s ease;
    position: absolute;
    top: -10%;
}.local-teacher-profile .local-alumni-feedback .local-img-item:hover::after {
    opacity: 1;
}.local-teacher-profile .local-alumni-feedback > div:nth-child(2) {
    opacity: 0;
    text-align: center;
    animation: fadeInUp 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
}.local-teacher-profile .local-alumni-feedback .name {
    display: inline-block;
    font-size: 18px;
    position: relative;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}.local-teacher-profile .local-alumni-feedback .name::after {
    width: 40px;
    border-radius: 1px;
    transform: translateX(-50%);
    bottom: -8px;
    height: 3px;
    position: absolute;
    background: rgb(218,177,195);
    left: 50%;
    content: "";
}.local-teacher-profile .local-alumni-feedback > div:nth-child(2) > div {
    font-size: calc(14px - 0.1rem);
    margin-top: 1rem;
    color: rgb(196,136,166);
    font-weight: 600;
}.local-teacher-profile .local-alumni-feedback > div:nth-child(3) {
    animation: fadeInUp 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s forwards;
    opacity: 0;
}.local-teacher-profile .local-alumni-feedback .local-exp-skills {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 14px;
    color: #000000;
    position: relative;
    line-height: 1.7;
    border-left: 3px solid rgb(218,177,195,0.5);
}.local-teacher-profile .local-alumni-feedback .local-exp-skills::before {
    font-family: Georgia, serif;
    font-size: 5rem;
    opacity: 0.2;
    position: absolute;
    left: -15px;
    content: "";
    color: rgb(218,177,195,0.5);
    top: -20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, 5%) rotate(2deg);
    }
    50% {
        transform: translate(0, 8%) rotate(0deg);
    }
    75% {
        transform: translate(-5%, 3%) rotate(-2deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@media (min-width: 768px) {.local-teacher-profile {
    padding: 7rem 0;
}.local-teacher-profile .local-alumni-feedback {
    grid-template-columns: 280px 1fr;
    row-gap: 1.5rem;
    grid-template-rows: auto 1fr;
    padding: 3rem;
    column-gap: 3rem;
}.local-teacher-profile .local-alumni-feedback > div:first-child {
    grid-row: 1 / span 2;
}.local-teacher-profile .local-alumni-feedback > div:nth-child(2) {
    align-self: flex-end;
    text-align: left;
}.local-teacher-profile .local-alumni-feedback .name::after {
    left: 0;
    transform: none;
}
}

@media (min-width: 992px) {.local-teacher-profile .local-alumni-feedback {
    padding: 3.5rem;
    grid-template-columns: 320px 1fr;
}.local-teacher-profile .local-alumni-feedback > div:first-child {
    max-width: 320px;
}.local-teacher-profile .local-alumni-feedback .local-img-item {
    height: 350px;
}.local-teacher-profile .local-alumni-feedback .local-exp-skills {
    line-height: 1.8;
    font-size: calc(14px + 0.05rem);
}
}

@media (max-width: 767px) {.local-teacher-profile {
    padding: 4rem 0;
}.local-teacher-profile .container {
    padding: 0 1rem;
}.local-teacher-profile .local-alumni-feedback {
    padding: 2rem;
}.local-teacher-profile .local-alumni-feedback .local-img-item {
    height: 240px;
}}.local-receive-updates {
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    background: rgb(236,218,225);
    padding: 6rem 2rem;
}.local-receive-updates::before,
.local-receive-updates::after {
    position: absolute;
    z-index: 0;
    content: "";
    border-radius: 50%;
}.local-receive-updates::before {
    height: 60vw;
    filter: blur(30px);
    width: 60vw;
    right: -20vw;
    background: linear-gradient(135deg, rgb(218,177,195,0.5), transparent);
    top: -20vw;
    animation: floatBubble 15s infinite alternate ease-in-out;
}.local-receive-updates::after {
    height: 40vw;
    filter: blur(25px);
    animation: floatBubble 18s infinite alternate-reverse ease-in-out;
    width: 40vw;
    left: -15vw;
    bottom: -15vw;
    background: linear-gradient(225deg, rgb(196,136,166,0.5), transparent);
}.local-receive-updates .local-principles-list {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    position: relative;
}.local-receive-updates .local-connect-links {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 3rem;
    margin-left: auto;
    position: relative;
    width: 90%;
    backdrop-filter: blur(10px);
    margin-right: 0;
    border-radius: 12px;
    overflow: hidden;
}.local-receive-updates .local-connect-links::before,
.local-receive-updates .local-connect-links::after {
    pointer-events: none;
    position: absolute;
    content: "";
}.local-receive-updates .local-connect-links::before {
    animation: rotateBg 20s infinite linear;
    width: 150%;
    opacity: 0.5;
    top: -100%;
    height: 200%;
    mix-blend-mode: overlay;
    background: 
        radial-gradient(circle at 30% 40%, rgb(218,177,195,0.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgb(196,136,166,0.5) 0%, transparent 50%);
    left: -25%;
}.local-receive-updates h3 {
    margin-bottom: 2.5rem;
    color: #000000;
    position: relative;
    font-weight: 700;
    font-size: 34px;
}.local-receive-updates .input_holder {
    width: 100%;
    position: relative;
    flex-direction: column;
    z-index: 1;
    display: flex;
}.local-receive-updates input[type="email"] {
    padding: 1.2rem 1.5rem;
    font-size: 18px;
    border-radius: 50px;
    color: #000000;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), 0 -2px 5px rgba(255, 255, 255, 0.5) inset;
    margin-bottom: 1.5rem;
    background: #ffffff;
    width: 100%;
    transition: all 0.3s ease;
}.local-receive-updates input[type="email"]:focus {
    transform: scale(1.02);
    outline: none;
    box-shadow: 0 5px 15px rgb(218,177,195,0.5), 0 -2px 5px rgba(255, 255, 255, 0.5) inset;
}.local-receive-updates input[type="email"]::placeholder {
    color: #000000;
    opacity: 0.6;
}.local-receive-updates .local-subscribe-box {
    background: linear-gradient(135deg, rgb(218,177,195), rgb(196,136,166));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    z-index: 1;
    border: none;
    transition: all 0.3s ease;
    color: #ffffff;
    padding: 1.2rem 3rem;
    overflow: hidden;
    font-weight: 600;
    align-self: flex-end;
    font-size: 15px;
    cursor: pointer;
    position: relative;
}.local-receive-updates .local-subscribe-box::before {
    background: linear-gradient(135deg, rgb(196,136,166), rgb(218,177,195));
    width: 100%;
    content: "";
    top: 0;
    transition: opacity 0.3s ease;
    left: 0;
    position: absolute;
    height: 100%;
    z-index: -1;
    opacity: 0;
}.local-receive-updates .local-subscribe-box:hover {
    box-shadow: 0 15px 30px rgb(218,177,195,0.5);
    transform: translateY(-5px);
}.local-receive-updates .local-subscribe-box:hover::before {
    opacity: 1;
}

@keyframes floatBubble {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(5%, 5%);
    }
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(10px);
    }
}

@media (min-width: 768px) {.local-receive-updates {
    padding: 8rem 3rem;
}.local-receive-updates .local-connect-links {
    width: 70%;
    padding: 4rem;
}.local-receive-updates .input_holder {
    align-items: center;
    flex-direction: row;
    gap: 1.5rem;
}.local-receive-updates input[type="email"] {
    flex: 1;
    margin-bottom: 0;
}
}

@media (max-width: 767px) {.local-receive-updates {
    padding: 5rem 1.5rem;
}.local-receive-updates h3 {
    font-size: 23px;
}.local-receive-updates .local-connect-links {
    padding: 2.5rem 2rem;
    width: 100%;
    margin: 0 auto;
}.local-receive-updates .local-subscribe-box {
    align-self: center;
    width: 100%;
}}.local-thanksPage {
    position: relative;
    background: linear-gradient(135deg, rgb(236,218,225), rgb(236,218,225) 60%, rgb(196,136,166,0.5) 140%);
    padding: 5rem 0;
    overflow: hidden;
}.local-thanksPage::before {
    right: -10%;
    transform: rotate(15deg) skew(5deg);
    height: 70%;
    background: linear-gradient(145deg, rgb(218,177,195,0.5) 10%, transparent 70%);
    position: absolute;
    opacity: 0.8;
    filter: blur(20px);
    z-index: 1;
    top: -5%;
    content: "";
    width: 50%;
    animation: float 18s ease-in-out infinite alternate;
}.local-thanksPage::after {
    animation: float 15s ease-in-out infinite alternate-reverse;
    position: absolute;
    filter: blur(15px);
    height: 60%;
    bottom: -8%;
    background: linear-gradient(215deg, rgb(196,136,166,0.5) 15%, transparent 65%);
    width: 40%;
    left: -5%;
    z-index: 1;
    transform: rotate(-10deg) skew(-5deg);
    opacity: 0.7;
    content: "";
}.local-thanksPage .container {
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
    padding: 0 1.5rem;
}.local-thanksPage h2 {
    font-family: Arial, sans-serif;
    font-size: 33px;
    position: relative;
    font-weight: 700;
    color: #000000;
    max-width: 90%;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    line-height: 1.3;
    transform: translateY(0);
    margin-bottom: 2rem;
}.local-thanksPage h2::after {
    bottom: -0.8rem;
    width: 80px;
    transition: transform 0.6s ease-out;
    left: 0;
    transform-origin: left center;
    transform: scaleX(1);
    content: "";
    height: 4px;
    background: linear-gradient(90deg, rgb(218,177,195), rgb(196,136,166));
    position: absolute;
}.local-thanksPage:hover h2 {
    transform: translateY(-5px);
}.local-thanksPage:hover h2::after {
    transform: scaleX(1.2);
}.local-thanksPage .local-principles-list {
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    margin-top: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
    padding: 2.5rem;
    border-radius: calc(15px / 1.5);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.05),
        0 5px 10px rgba(0, 0, 0, 0.02);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    backdrop-filter: blur(8px);
}.local-thanksPage .local-principles-list::before {
    content: "";
    top: 0;
    animation: gradientMove 8s ease infinite;
    background-size: 200% 100%;
    height: 4px;
    background: linear-gradient(90deg, rgb(218,177,195), rgb(196,136,166), rgb(218,177,195));
    width: 100%;
    position: absolute;
    left: 0;
}.local-thanksPage .local-principles-list:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.08),
        0 8px 15px rgba(0, 0, 0, 0.03);
}.local-thanksPage ul {
    padding: 0;
    list-style: none;
    margin: 0;
    position: relative;
}.local-thanksPage li {
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
}.local-thanksPage li::before {
    border-radius: 50%;
    top: 0.5rem;
    height: 10px;
    content: "";
    left: 0;
    width: 10px;
    background: rgb(218,177,195);
    position: absolute;
    transform: scale(0.8);
    transition: transform 0.3s ease, background-color 0.3s ease;
}.local-thanksPage li:hover::before {
    background: rgb(196,136,166);
    transform: scale(1.1);
}.local-thanksPage li span {
    font-size: calc(12px * 1.05);
    display: block;
    color: #000000;
    transition: transform 0.3s ease;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}.local-thanksPage li:hover span {
    transform: translateX(5px);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(15deg) skew(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(12deg) skew(3deg);
    }
    100% {
        transform: translateY(0) rotate(15deg) skew(5deg);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 992px) {.local-thanksPage {
    padding: 4rem 0;
}.local-thanksPage h2 {
    font-size: calc(33px * 0.9);
    max-width: 100%;
}.local-thanksPage .local-principles-list {
    padding: 2rem;
}
}

@media (max-width: 768px) {.local-thanksPage {
    padding: 3.5rem 0;
}.local-thanksPage h2 {
    font-size: calc(33px * 0.8);
    margin-bottom: 1.5rem;
}.local-thanksPage h2::after {
    height: 3px;
    width: 60px;
}.local-thanksPage .local-principles-list {
    padding: 1.8rem;
}.local-thanksPage li {
    padding-left: 1.8rem;
}.local-thanksPage li span {
    font-size: 12px;
}
}

@media (max-width: 576px) {.local-thanksPage {
    padding: 3rem 0;
}.local-thanksPage h2 {
    font-size: calc(33px * 0.7);
    margin-bottom: 1.2rem;
}.local-thanksPage h2::after {
    width: 50px;
    height: 3px;
}.local-thanksPage .local-principles-list {
    padding: 1.5rem;
    margin-top: 0.5rem;
}.local-thanksPage li {
    padding-left: 1.5rem;
}.local-thanksPage li::before {
    height: 8px;
    width: 8px;
    top: 0.4rem;
}.local-thanksPage li span {
    font-size: calc(12px * 0.95);
    line-height: 1.6;
}
}