* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}.job-board {
    flex: 0 0 auto;
}.nav-header {
    flex: 1 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    height: 30px;
    width: 30px;
}.container {
    margin: auto;
    width: 1249px;
    max-width: 100%;
}header,footer {
    width: 100%;
}html,body {
    auto
contain;
    min-height: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
}.grid-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header {
    padding: 0;
    backdrop-filter: blur(10px);
    z-index: 100;
    position: relative;
    background: linear-gradient(135deg, rgb(165,190,175,0.5) 0%, rgb(132,162,146,0.5) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 0;
}header::before {
    width: 100%;
    content: '';
    top: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgb(165,190,175,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(132,162,146,0.5) 0%, transparent 30%);
    z-index: -1;
    left: 0;
    opacity: 0.5;
    position: absolute;
    height: 100%;
}header .nav-master {
    justify-content: space-between;
    position: relative;
    align-items: center;
    display: flex;
    padding: 1.2rem 2.5rem;
    z-index: 5;
}header .main-nav {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 21px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.2rem;
    transition: all 0.4s ease;
    flex: 0 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(5px);
}header .main-nav:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.25);
}header .main-mentor {
    transition: all 0.3s ease;
    display: block;
}header .main-mentor img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    max-height: 40px;
}header .head-wrap {
    list-style: none;
    margin: 0;
    position: relative;
    padding: 0;
    display: flex;
    z-index: 2;
}header .head-guide {
    margin: 0 0.3rem;
    position: relative;
}header .head-guide a {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 21px;
    text-decoration: none;
    font-size: 13px;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    z-index: 1;
    backdrop-filter: blur(5px);
}header .head-guide a:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}header .head-guide a::before {
    height: 100%;
    left: 0;
    opacity: 0;
    top: 0;
    z-index: -1;
    content: '';
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 21px;
    transition: opacity 0.3s ease;
    width: 100%;
}header .head-guide a:hover::before {
    opacity: 1;
}header .head-guide::after {
    content: '';
    height: 3px;
    position: absolute;
    background: #ffffff;
    transition: width 0.3s ease;
    border-radius: 10px;
    opacity: 0.7;
    left: 50%;
    width: 0;
    bottom: -3px;
    transform: translateX(-50%);
}header .head-guide:hover::after {
    width: 70%;
}header .nav-master::before {
    background: rgb(165,190,175,0.5);
    border-radius: 50%;
    right: -20px;
    opacity: 0.5;
    z-index: -1;
    content: '';
    position: absolute;
    width: 100px;
    top: -20px;
    height: 100px;
    filter: blur(40px);
}header .nav-master::after {
    opacity: 0.5;
    left: -20px;
    filter: blur(30px);
    border-radius: 50%;
    content: '';
    background: rgb(132,162,146,0.5);
    height: 80px;
    z-index: -1;
    position: absolute;
    bottom: -20px;
    width: 80px;
}header .nav-header {
    z-index: 1;
    position: relative;
    background: rgb(199,221,204);
    padding-top: 2rem;
}@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

header .main-nav::after {
    width: 100%;
    opacity: 0.5;
    left: 0;
    height: 20px;
    content: '';
    bottom: -20px;
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
}header .main-nav:hover::after {
    transform: scaleX(0.9);
    opacity: 0.7;
}

@media (min-width: 1400px) {header .nav-master {
    max-width: 1320px;
    margin: 0 auto;
}header .head-guide {
    margin: 0 0.5rem;
}header .head-guide a {
    padding: 0.8rem 1.5rem;
}
}

@media (max-width: 991px) {header {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}header .nav-master {
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
}header .main-nav {
    border-radius: 10px;
    padding: 0.6rem 1rem;
    margin-bottom: 0;
}header .head-wrap {
    margin-top: 1rem;
    flex-basis: 100%;
    justify-content: flex-end;
}header .head-guide a {
    border-radius: 10px;
    font-size: calc(13px - 1px);
    padding: 0.6rem 1rem;
}header .nav-master::before,
    header .nav-master::after {
    display: none;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .nav-master {
    padding: 0.8rem 1.2rem;
}header .main-nav {
    max-width: 140px;
    padding: 0.5rem 0.8rem;
}header .main-mentor img {
    max-height: 35px;
}header .head-wrap {
    scrollbar-width: thin;
    margin-top: 0.8rem;
    padding-bottom: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}header .head-wrap::-webkit-scrollbar {
    height: 3px;
}header .head-wrap::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}header .head-guide {
    flex: 0 0 auto;
    margin: 0 0.15rem;
}header .head-guide a {
    padding: 0.5rem 0.8rem;
    font-size: calc(13px - 2px);
    white-space: nowrap;
}header .head-guide::after {
    display: none;
}header .main-nav::after {
    display: none;
}
}

@media (max-width: 479px) {header .nav-master {
    padding: 0.7rem 1rem;
}header .main-nav {
    padding: 0.4rem 0.7rem;
    max-width: 120px;
}header .head-guide a {
    font-size: calc(13px - 3px);
    padding: 0.4rem 0.6rem;
}}.thankPageID {
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(199,221,204) 0%, rgb(132,162,146,0.5) 100%);
    overflow: hidden;
    position: relative;
}.thankPageID::before {
    animation: pulse 8s infinite alternate ease-in-out;
    transform: rotate(-15deg);
    opacity: 0.6;
    width: 300px;
    position: absolute;
    top: -50px;
    background: radial-gradient(circle, rgb(165,190,175,0.5) 0%, transparent 70%);
    height: 300px;
    content: "";
    z-index: 1;
    right: -50px;
}.thankPageID::after {
    position: absolute;
    left: -100px;
    bottom: -100px;
    animation: float 12s infinite alternate ease-in-out;
    background: radial-gradient(ellipse, rgb(132,162,146,0.5) 0%, transparent 70%);
    content: "";
    z-index: 1;
    width: 400px;
    opacity: 0.4;
    height: 400px;
}.thankPageID .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1140px;
    position: relative;
    padding: 0 20px;
}.thankPageID h2 {
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
    font-size: 30px;
    transform: translateY(0);
    animation: slideInTitle 1.2s ease-out;
    color: #000000;
    opacity: 1;
}.thankPageID h2::after {
    content: "";
    left: 0;
    transform-origin: left;
    bottom: -15px;
    width: 80px;
    animation: expandWidth 1.5s ease-out forwards 0.5s;
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, rgb(165,190,175) 0%, rgb(132,162,146) 100%);
}.thankPageID .expert-study {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 40px;
    animation: slideInContent 1.5s ease-out 0.3s both;
    transform: translateY(0);
}.thankPageID .expert-study::before {
    background: linear-gradient(135deg, transparent 0%, rgb(255, 255, 255, 0.5) 100%);
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    z-index: -1;
    position: absolute;
    top: 0;
}.thankPageID ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.thankPageID li {
    padding-left: 25px;
    animation: fadeIn 1.8s ease-out 0.6s both;
    position: relative;
    margin-bottom: 15px;
}.thankPageID li::before {
    top: 10px;
    background: rgb(165,190,175);
    transform: rotate(45deg);
    animation: rotateMark 6s infinite alternate ease-in-out;
    height: 8px;
    position: absolute;
    content: "";
    left: 0;
    width: 8px;
}.thankPageID li span {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #000000;
    display: block;
    font-size: 18px;
}

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

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

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

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

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

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

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

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

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

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

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

@supports (container-type: inline-size) {.thankPageID .container {
    container-name: thanks-container;
    container-type: inline-size;
}
  
  @container thanks-container (max-width: 768px) {.thankPageID .expert-study {
    padding: 20px;
}.thankPageID h2 {
    margin-bottom: 25px;
}}
}.job-board {
    position: relative;
    padding: 80px 0 40px;
    z-index: 1;
    color: #ffffff;
}.job-board::before {
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}footer {
    position: relative;
}.job-board .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    display: grid;
}.job-board .company_holder {
    padding-right: 40px;
    position: relative;
}.job-board .company_holder::after {
    height: 60%;
    width: 1px;
    position: absolute;
    top: 20%;
    content: "";
    right: 0;
    background: linear-gradient(to bottom, 
        transparent, 
        rgb(132,162,146,0.5), 
        transparent);
}.job-board .company_holder h3 {
    display: inline-block;
    position: relative;
    font-weight: 700;
    font-size: calc(38px * 0.9);
    margin-bottom: 25px;
}.job-board .company_holder h3::after {
    background: rgb(165,190,175);
    position: absolute;
    border-radius: 10px;
    left: 0;
    width: 40px;
    content: "";
    height: 3px;
    bottom: -8px;
}.job-board .footer-social {
    color: #ffffff;
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}.job-board .edu-links {
    justify-content: flex-end;
    display: flex;
}.job-board .head-primary {
    gap: 60px;
    display: flex;
}.job-board .head-wrap {
    position: relative;
}.job-board .head-wrap h5 {
    padding-bottom: 12px;
    font-size: 23px;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
}.job-board .head-wrap h5::after {
    width: 30px;
    border-radius: 10px;
    content: "";
    height: 2px;
    bottom: 0;
    left: 0;
    position: absolute;
    background: rgb(165,190,175);
}.job-board .head-wrap .head-primary {
    gap: 15px;
    display: flex;
    flex-direction: column;
}.job-board .head-wrap .head-primary a {
    transition: all 0.3s ease;
    font-size: calc(14px * 0.95);
    text-decoration: none;
    opacity: 0.7;
    color: #ffffff;
    padding-left: 0;
    position: relative;
}.job-board .head-wrap .head-primary a::before {
    position: absolute;
    height: 1px;
    width: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    top: 50%;
    opacity: 0;
    background: rgb(165,190,175);
    left: 0;
    content: "";
}.job-board .head-wrap .head-primary a:hover {
    padding-left: 12px;
    color: rgb(165,190,175);
    opacity: 1;
}.job-board .head-wrap .head-primary a:hover::before {
    width: 8px;
    opacity: 1;
}.grade-help {
    backdrop-filter: blur(5px);
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
}.grade-help .container {
    justify-content: center;
    align-items: center;
    display: flex;
}.grade-help .peer-help {
    letter-spacing: 0.5px;
    text-align: center;
    opacity: 0.6;
    color: #ffffff;
    font-size: 14px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgb(165,190,175,0.5);
    }
    50% {
        box-shadow: 0 0 15px rgb(165,190,175);
    }
}

@media (max-width: 991px) {.job-board {
    padding: 60px 0 30px;
}.job-board .container {
    grid-template-columns: 1fr;
    gap: 50px;
}.job-board .company_holder {
    padding-right: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}.job-board .company_holder::after {
    display: none;
}.job-board .company_holder h3 {
    margin-left: auto;
    margin-right: auto;
}.job-board .company_holder h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
}.job-board .footer-social {
    max-width: 100%;
    text-align: center;
}.job-board .edu-links {
    justify-content: center;
}
}

@media (max-width: 767px) {.job-board {
    padding: 50px 0 20px;
}.job-board .head-primary {
    flex-direction: column;
    gap: 40px;
    width: 100%;
}.job-board .head-wrap {
    text-align: center;
}.job-board .head-wrap h5 {
    text-align: center;
}.job-board .head-wrap h5::after {
    left: 50%;
    transform: translateX(-50%);
}.job-board .head-wrap .head-primary {
    align-items: center;
}.job-board .head-wrap .head-primary a {
    text-align: center;
}.job-board .head-wrap .head-primary a::before {
    display: none;
}.job-board .head-wrap .head-primary a:hover {
    padding-left: 0;
}
}

@media (max-width: 480px) {.job-board {
    padding: 40px 0 20px;
}.job-board .company_holder h3 {
    font-size: calc(38px * 0.8);
}.job-board .footer-social {
    font-size: calc(14px * 0.9);
}.grade-help .peer-help {
    font-size: calc(14px * 0.9);
}}

.job-board::before {
    background-image: radial-gradient(
        circle at 20% 80%, 
        #000000 0%, 
        rgba(0, 0, 0, 0.5) 70%
    );
}.job-board::after {
    box-shadow: 0 0 40px rgb(165,190,175,0.5);
}.job-board .container::before {
    position: absolute;
    filter: blur(30px);
    height: 150px;
    animation: pulse 10s infinite alternate-reverse;
    background: radial-gradient(
        circle, 
        rgb(132,162,146,0.5), 
        transparent 70%
    );
    bottom: -75px;
    border-radius: 50%;
    content: "";
    left: -75px;
    width: 150px;
}.job-board .head-wrap::before {
    opacity: 0.7;
    position: absolute;
    height: 5px;
    width: 5px;
    content: "";
    left: -15px;
    background: rgb(165,190,175);
    border-radius: 50%;
    top: 10px;
}.job-board .head-wrap:hover::before {
    animation: glow 2s infinite;
}.job-board .company_holder::before {
    background: linear-gradient(90deg, 
        rgb(165,190,175,0.5), 
        transparent);
    height: 1px;
    bottom: -20px;
    position: absolute;
    left: 0;
    width: 100px;
    content: "";
}

@media (max-width: 991px) {.job-board .company_holder::before {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, 
            transparent, 
            rgb(165,190,175,0.5), 
            transparent);
}}

.job-board .head-wrap .head-primary a::after {
    background: rgb(165,190,175);
    left: 0;
    content: "";
    width: 0;
    position: absolute;
    transition: width 0.3s ease;
    height: 1px;
    bottom: -2px;
}.job-board .head-wrap .head-primary a:hover::after {
    width: 100%;
}.job-board .head-wrap .head-primary a:nth-child(odd):hover {
    transform: translateX(2px);
}.job-board .head-wrap .head-primary a:nth-child(even):hover {
    transform: translateX(2px);
}

@media (min-width: 992px) {footer::after {
    right: 0;
    top: 0;
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
            transparent, 
            rgb(132,162,146,0.5), 
            transparent);
    content: "";
    left: 0;
}.job-board::before {
    background-blend-mode: overlay;
}}

.job-board .company_holder h3::before {
    background: rgb(165,190,175);
    top: 50%;
    left: -30px;
    content: "";
    height: 1px;
    opacity: 0.7;
    width: 20px;
    position: absolute;
}

@media (max-width: 991px) {.job-board .company_holder h3::before {
    display: none;
}}

.grade-help {
    overflow: hidden;
    position: relative;
}.grade-help::before {
    width: 100%;
    position: absolute;
    content: "";
    height: 1px;
    top: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(132,162,146,0.5), 
        transparent);
    left: 0;
}.grade-help::after {
    bottom: 0;
    content: "";
    opacity: 0.3;
    width: 30%;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(132,162,146,0.5), 
        transparent);
    position: absolute;
    left: 35%;
    height: 1px;
}.grade-help .peer-help {
    transition: all 0.3s ease;
    position: relative;
}.grade-help .peer-help:hover {
    opacity: 1;
    letter-spacing: 0.7px;
}.pricing-shelf {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}.pricing-shelf::before {
    bottom: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}.pricing-shelf .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    z-index: 2;
}.pricing-shelf .cost-options {
    position: relative;
}.pricing-shelf h2 {
    animation: fadeInUp 0.8s ease-out forwards;
    font-weight: 700;
    transform: translateY(20px);
    position: relative;
    text-align: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
}.pricing-shelf .package-price {
    transform: translateY(20px);
    color: rgb(255, 255, 255, 0.5);
    opacity: 0;
    line-height: 1.6;
    font-size: 18px;
    margin: 0 auto 50px;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}.pricing-shelf .promo-cost {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    perspective: 1000px;
    margin: 0;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 30px;
}.pricing-shelf .promo-cost li {
    transform: translateZ(0) rotateY(5deg) translateX(20px);
    animation: fadeInStagger 0.8s ease-out forwards;
    opacity: 0;
}.pricing-shelf .promo-cost li:nth-child(1) {
    animation-delay: 0.3s;
}.pricing-shelf .promo-cost li:nth-child(2) {
    animation-delay: 0.5s;
}.pricing-shelf .promo-cost li:nth-child(3) {
    animation-delay: 0.7s;
}.pricing-shelf .promo-cost li:nth-child(4) {
    animation-delay: 0.9s;
}.pricing-shelf .learning-rates {
    text-decoration: none;
    display: block;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.pricing-shelf .deal-board {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transform: translateZ(0);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}.pricing-shelf .deal-board::before {
    height: 100%;
    opacity: 0;
    background: linear-gradient(45deg, rgb(165,190,175,0.5), rgb(132,162,146,0.5));
    content: "";
    top: 0;
    z-index: -1;
    left: 0;
    position: absolute;
    width: 100%;
    transition: opacity 0.6s ease;
}.pricing-shelf .promo-rates {
    color: #ffffff;
    flex-direction: column;
    display: flex;
    min-height: 400px;
    height: 100%;
    padding: 35px 30px;
}.pricing-shelf .promo-rates h4 {
    padding-bottom: 15px;
    font-weight: 700;
    transition: transform 0.3s ease-out;
    color: #ffffff;
    font-size: calc(24px * 1.1);
    margin: 0 0 15px;
    position: relative;
}.pricing-shelf .promo-rates h4::after {
    background: rgb(165,190,175);
    height: 3px;
    transition: width 0.4s ease;
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    width: 60px;
}.pricing-shelf .promo-rates p {
    flex-grow: 1;
    color: rgba(255,255,255,0.8);
    margin: 0 0 auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 18px;
    line-height: 1.7;
    hyphens: auto;
}.pricing-shelf .edu-deals {
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: calc(24px * 1.3);
    background: linear-gradient(135deg, rgb(165,190,175) 0%, rgb(132,162,146) 100%);
    align-self: flex-start;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: inline-block;
    font-weight: 700;
    margin-top: 25px;
    color: #ffffff;
    padding: 10px 20px;
}.pricing-shelf .learning-rates:hover {
    transform: translateY(-10px) scale(1.02);
}.pricing-shelf .learning-rates:hover .deal-board {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 15px 20px rgba(0,0,0,0.2);
}.pricing-shelf .learning-rates:hover .deal-board::before {
    opacity: 0.05;
}.pricing-shelf .learning-rates:hover .promo-rates h4 {
    transform: translateY(-5px);
}.pricing-shelf .learning-rates:hover .promo-rates h4::after {
    width: 100px;
}.pricing-shelf .learning-rates:hover .edu-deals {
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transform: scale(1.05) translateY(-5px);
}

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

@keyframes fadeInStagger {
    from {
        opacity: 0;
        transform: translateZ(-50px) rotateY(10deg) translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateZ(0) rotateY(0) translateX(0);
    }
}

@media (max-width: 1024px) {.pricing-shelf {
    padding: 80px 0;
}.pricing-shelf .promo-cost {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}.pricing-shelf .promo-rates {
    padding: 30px 25px;
    min-height: 380px;
}
}

@media (max-width: 768px) {.pricing-shelf {
    padding: 60px 0;
}.pricing-shelf h2 {
    font-size: calc(28px * 0.9);
}.pricing-shelf .package-price {
    font-size: calc(18px * 0.95);
    margin-bottom: 40px;
}.pricing-shelf .promo-cost {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.pricing-shelf .promo-rates {
    min-height: 350px;
    padding: 25px 20px;
}.pricing-shelf .promo-rates h4 {
    font-size: 24px;
}.pricing-shelf .edu-deals {
    font-size: calc(24px * 1.1);
}
}

@media (max-width: 576px) {.pricing-shelf {
    padding: 50px 0;
}.pricing-shelf .container {
    padding: 0 15px;
}.pricing-shelf h2 {
    font-size: calc(28px * 0.8);
}.pricing-shelf .package-price {
    margin-bottom: 30px;
    font-size: calc(18px * 0.9);
}.pricing-shelf .promo-cost {
    gap: 25px;
    grid-template-columns: 1fr;
}.pricing-shelf .promo-rates {
    min-height: auto;
}.pricing-shelf .promo-rates p {
    font-size: calc(18px * 0.9);
}.pricing-shelf .edu-deals {
    align-self: center;
    margin-top: 20px;
}}.contact-form-box {
    padding: 70px 0;
    overflow: hidden;
    position: relative;
    background: rgb(199,221,204);
}.contact-form-box::before {
    width: 100%;
    position: absolute;
    content: "";
    z-index: 0;
    left: 0;
    top: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.03) 20px),
        repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.03) 20px);
    height: 100%;
}.contact-form-box .container {
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 1;
}.contact-form-box h2 {
    color: rgb(132,162,146);
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    font-size: 33px;
    font-weight: 700;
}.contact-form-box h2::after {
    content: "";
    transform: translateX(-50%);
    background: rgb(165,190,175);
    left: 50%;
    bottom: -15px;
    position: absolute;
    width: 60px;
    height: 3px;
}.contact-form-box .feedback-support {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    border-radius: 24px;
    background: #ffffff;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}.contact-form-box .pic-holder {
    grid-column: 2;
    grid-row: 1;
    border-bottom-right-radius: 24px;
    transition: transform 0.6s ease;
    border-top-right-radius: 24px;
    min-height: 500px;
    height: 100%;
}.contact-form-box .contact-request {
    grid-row: 1;
    padding: 50px 40px;
    background: #ffffff;
    grid-column: 1;
}.contact-form-box #contact {
    flex-direction: column;
    display: flex;
    gap: 25px;
}.contact-form-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: rgb(165,190,175);
    font-weight: 600;
}.contact-form-box input[type="text"] {
    padding: 15px 20px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 13px;
    border: 1px solid rgb(199,221,204);
    border-radius: 10px;
    background: #ffffff;
    color: #000000;
}.contact-form-box input[type="text"]:focus {
    border-color: rgb(165,190,175);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    outline: none;
}.contact-form-box input[type="text"]::placeholder {
    opacity: 0.5;
    color: #000000;
}.contact-form-box .connect-list {
    display: flex;
    margin-top: 10px;
    align-items: flex-start;
    gap: 10px;
}.contact-form-box .connect-list input[type="checkbox"] {
    width: 24px;
    appearance: none;
    flex-shrink: 0;
    cursor: pointer;
    margin-top: 2px;
    border-radius: 10px;
    border: 2px solid rgb(199,221,204);
    height: 24px;
    position: relative;
}.contact-form-box .connect-list input[type="checkbox"]:checked {
    background: rgb(165,190,175);
    border-color: rgb(165,190,175);
}.contact-form-box .connect-list input[type="checkbox"]:checked::after {
    color: #ffffff;
    left: 50%;
    font-size: 16px;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "✓";
    position: absolute;
}.contact-form-box .connect-list label {
    color: #000000;
    font-size: 13px;
    line-height: 1.5;
}.contact-form-box .connect-list a {
    transition: all 0.3s ease;
    font-weight: 600;
    color: rgb(165,190,175);
    text-decoration: none;
}.contact-form-box .connect-list a:hover {
    color: rgb(132,162,146);
}.contact-form-box .request-feedback {
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    background: rgb(165,190,175);
    align-self: flex-start;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    padding: 15px 35px;
}.contact-form-box .request-feedback::before {
    transition: all 0.6s ease;
    position: absolute;
    width: 100%;
    content: "";
    left: -100%;
    height: 100%;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}.contact-form-box .request-feedback:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background: rgb(132,162,146);
}.contact-form-box .request-feedback:hover::before {
    left: 100%;
}.contact-form-box svg {
    margin-right: 10px;
    fill: rgb(165,190,175);
    height: 22px;
    vertical-align: middle;
    width: 22px;
}.contact-form-box svg path {
    fill: rgb(165,190,175);
}

@media (max-width: 992px) {.contact-form-box .feedback-support {
    grid-template-columns: 1fr;
}.contact-form-box .pic-holder {
    grid-row: 1;
    border-top-right-radius: 24px;
    grid-column: 1;
    border-top-left-radius: 24px;
    border-radius: 0;
    min-height: 300px;
}.contact-form-box .contact-request {
    grid-column: 1;
    grid-row: 2;
    padding: 40px 30px;
}
}

@media (max-width: 768px) {.contact-form-box {
    padding: 50px 0;
}.contact-form-box h2 {
    font-size: calc(33px - 4px);
    margin-bottom: 30px;
}.contact-form-box .contact-request {
    padding: 30px 25px;
}.contact-form-box .pic-holder {
    min-height: 250px;
}
}

@media (max-width: 576px) {.contact-form-box {
    padding: 40px 0;
}.contact-form-box .container {
    padding: 0 15px;
}.contact-form-box h2::after {
    width: 40px;
}.contact-form-box .contact-request {
    padding: 25px 20px;
}.contact-form-box #contact {
    gap: 20px;
}.contact-form-box .request-feedback {
    padding: 14px 20px;
    width: 100%;
}.contact-form-box .pic-holder {
    min-height: 200px;
}}.about-this {
    position: relative;
    background: rgb(199,221,204);
    padding: 120px 0;
    overflow: hidden;
}.about-this::before {
    top: 0;
    position: absolute;
    z-index: 1;
    background: linear-gradient(135deg, rgb(165,190,175,0.5) 0%, transparent 50%);
    opacity: 0.35;
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
}.about-this::after {
    z-index: 1;
    position: absolute;
    right: 0;
    content: "";
    top: 0;
    width: 60%;
    background: radial-gradient(circle at 70% 30%, rgb(132,162,146,0.5) 0%, transparent 70%);
    height: 100%;
}.about-this .container {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 15px;
}.about-this .expert-study {
    flex-direction: row-reverse;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}.about-this .expert-study::before {
    width: 200px;
    content: "";
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    position: absolute;
    animation: pulse 8s infinite alternate;
    height: 200px;
    background: rgb(165,190,175,0.5);
    right: -100px;
    top: -80px;
}.about-this .expert-study::after {
    z-index: -1;
    left: -70px;
    filter: blur(60px);
    content: "";
    position: absolute;
    width: 150px;
    animation: pulse 6s infinite alternate-reverse;
    border-radius: 50%;
    height: 150px;
    background: rgb(132,162,146,0.5);
    bottom: -50px;
}@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.about-this .learning-creators {
    transition: transform 0.6s ease;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(5deg);
    flex: 0 0 35%;
}.about-this .learning-creators:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}.about-this .learning-creators::before {
    top: -10px;
    border-radius: 28px;
    animation: border-pulse 4s infinite alternate;
    position: absolute;
    bottom: -10px;
    right: -10px;
    border: 1px solid rgb(132,162,146,0.5);
    content: "";
    left: -10px;
    z-index: -1;
}@keyframes border-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.about-this .pic-holder {
    position: relative;
    height: 380px;
    overflow: hidden;
}.about-this .pic-holder::after {
    left: 0;
    height: 50%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to top, #000000, transparent);
    bottom: 0;
    content: "";
    position: absolute;
}.about-this .study-experts {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    backdrop-filter: blur(10px);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}.about-this .learning-track {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: calc(19px - 2px);
    margin: 0 0 8px;
}.about-this .legacy-story {
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-weight: 300;
    opacity: 0.9;
    font-size: 16px;
}.about-this .content-zone {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    overflow: hidden;
    border-radius: 28px;
    flex: 1;
    position: relative;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
}.about-this .content-zone::before {
    left: 0;
    opacity: 0.15;
    background: linear-gradient(135deg, rgb(165,190,175,0.5) 0%, transparent 100%);
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
}.about-this .content-zone::after {
    width: 200px;
    height: 200px;
    position: absolute;
    background: radial-gradient(circle, rgb(132,162,146,0.5) 0%, transparent 70%);
    top: -50%;
    content: "";
    opacity: 0.8;
    animation: float 15s infinite linear;
    z-index: -1;
    right: -50%;
}@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.about-this .path-impact {
    display: flex;
    margin-bottom: 25px;
    gap: 15px;
    align-items: center;
}.about-this .path-impact svg {
    width: 48px;
    filter: drop-shadow(0 2px 10px rgb(165,190,175,0.5));
    fill: rgb(165,190,175);
    height: 48px;
    transition: transform 0.4s ease, filter 0.4s ease;
}.about-this .path-impact:hover svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgb(165,190,175));
}.about-this .path-impact svg path {
    transition: fill 0.3s ease;
}.about-this .path-impact:hover svg path {
    fill: rgb(132,162,146);
}.about-this .path-impact {
    text-transform: uppercase;
    font-weight: 600;
    font-size: calc(19px - 1px);
    letter-spacing: 1px;
    color: rgb(165,190,175);
}.about-this h2 {
    font-size: 29px;
    margin: 0 0 25px;
    padding-bottom: 15px;
    position: relative;
    color: #000000;
    font-weight: 700;
}.about-this h2::after {
    width: 80px;
    position: absolute;
    bottom: 0;
    background: rgb(165,190,175);
    border-radius: 10px;
    content: "";
    height: 3px;
    left: 0;
}.about-this p {
    z-index: 2;
    color: #000000;
    font-size: 16px;
    margin: 0;
    position: relative;
    line-height: 1.8;
}

@media (max-width: 1024px) {.about-this {
    padding: 90px 0;
}.about-this .expert-study {
    gap: 40px;
}.about-this .learning-creators {
    flex: 0 0 40%;
}.about-this .pic-holder {
    height: 350px;
}.about-this .content-zone {
    padding: 30px;
}
}

@media (max-width: 768px) {.about-this {
    padding: 70px 0;
}.about-this .expert-study {
    gap: 50px;
    flex-direction: column;
}.about-this .learning-creators {
    margin: 0 auto;
    width: 80%;
    max-width: 350px;
    transform: perspective(1000px) rotateY(0);
}.about-this .learning-creators:hover {
    transform: perspective(1000px) rotateY(0) translateY(-5px);
}.about-this .pic-holder {
    height: 320px;
}.about-this .content-zone {
    padding: 30px 25px;
    width: 100%;
}.about-this h2 {
    font-size: calc(29px - 4px);
}
}

@media (max-width: 576px) {.about-this {
    padding: 60px 0;
}.about-this::before,
    .about-this::after {
    opacity: 0.25;
}.about-this .learning-creators {
    width: 100%;
}.about-this .pic-holder {
    height: 280px;
}.about-this .study-experts {
    padding: 15px 20px;
}.about-this .learning-track {
    font-size: calc(19px + 1px);
}.about-this .content-zone {
    padding: 25px 20px;
}.about-this .path-impact svg {
    height: 40px;
    width: 40px;
}.about-this .path-impact {
    font-size: 16px;
    margin-bottom: 20px;
}.about-this h2 {
    padding-bottom: 12px;
    font-size: calc(29px - 6px);
    margin-bottom: 20px;
}.about-this h2::after {
    height: 2px;
    width: 60px;
}.about-this p {
    line-height: 1.7;
    font-size: calc(16px - 1px);
}}.leadership-experience {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    border-radius: 21px;
    background: rgb(199,221,204);
}.leadership-experience::before {
    top: 0;
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(rgb(165,190,175,0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgb(165,190,175,0.5) 1px, transparent 1px);
    opacity: 0.2;
    animation: grid-shift 30s linear infinite;
    background-size: 20px 20px;
    height: 100%;
}.leadership-experience .student-testimonials {
    display: grid;
    gap: 0;
    max-width: 900px;
    z-index: 2;
    position: relative;
    grid-template-columns: 45% 55%;
    margin: 0 auto;
}.leadership-experience .pic-holder {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    transition: filter 0.6s ease;
    min-height: 400px;
    height: 100%;
    filter: grayscale(60%);
    position: relative;
    z-index: 2;
}.leadership-experience .pic-holder::before {
    content: "";
    transform: scale(0.9);
    left: 20px;
    opacity: 0;
    border: 1px solid #ffffff;
    transition: all 0.5s ease;
    position: absolute;
    right: 20px;
    mix-blend-mode: overlay;
    top: 20px;
    z-index: 3;
    bottom: 20px;
}.leadership-experience .student-testimonials:hover .pic-holder {
    filter: grayscale(0%);
}.leadership-experience .student-testimonials:hover .pic-holder::before {
    transform: scale(1);
    opacity: 0.8;
}.leadership-experience .career-progress {
    margin-left: -10%;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 3;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    padding: 2rem 2rem 2rem 4rem;
    justify-content: center;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}.leadership-experience .career-progress::before {
    left: 0;
    transition: width 0.3s ease;
    top: 0;
    height: 100%;
    content: "";
    background: linear-gradient(to bottom, rgb(165,190,175), rgb(132,162,146));
    width: 10px;
    position: absolute;
}.leadership-experience .student-testimonials:hover .career-progress::before {
    width: 15px;
}.leadership-experience .name {
    line-height: 1.1;
    transition: all 0.4s ease;
    font-family: Arial, sans-serif;
    letter-spacing: -1px;
    color: rgb(165,190,175);
    font-size: calc(29px * 1.2);
    opacity: 0.9;
    font-weight: 700;
    margin-bottom: 0.8rem;
    transform: translateX(20px);
}.leadership-experience .student-testimonials:hover .name {
    opacity: 1;
    transform: translateX(0);
}.leadership-experience .career-progress > div:nth-child(2) {
    text-transform: uppercase;
    color: rgb(132,162,146);
    margin-bottom: 2rem;
    transform: translateX(15px);
    transition: all 0.4s ease 0.1s;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 13px;
    opacity: 0.7;
}.leadership-experience .student-testimonials:hover .career-progress > div:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
}.leadership-experience .career-details {
    line-height: 1.8;
    transform: translateX(10px);
    position: relative;
    font-size: 13px;
    color: #000000;
    transition: all 0.4s ease 0.2s;
    opacity: 0.8;
}.leadership-experience .career-details::first-letter {
    color: rgb(165,190,175);
    font-weight: 700;
    font-size: 1.6em;
}.leadership-experience .student-testimonials:hover .career-details {
    transform: translateX(0);
    opacity: 1;
}

@keyframes grid-shift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@media (max-width: 768px) {.leadership-experience .student-testimonials {
    grid-template-columns: 1fr;
}.leadership-experience .pic-holder {
    min-height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}.leadership-experience .career-progress {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    padding: 3rem 2rem 2rem;
    margin-top: -50px;
    margin-left: 0;
}}.course-overview {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    background-color: rgb(199,221,204);
}.course-overview::before {
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(165,190,175,0.5) 100%);
    top: 0;
    pointer-events: none;
    content: '';
    position: absolute;
}.course-overview::after {
    animation: pulse 15s infinite alternate;
    left: 0;
    background: radial-gradient(circle at 75% 25%, rgb(132,162,146,0.5) 0%, transparent 50%);
    content: '';
    top: 0;
    z-index: 3;
    width: 100%;
    position: absolute;
    pointer-events: none;
    height: 100%;
}.course-overview .future-class {
    height: 100%;
    position: absolute;
    top: 0;
    overflow: hidden;
    left: 0;
    z-index: 1;
    width: 100%;
}.course-overview .training-plan {
    animation: carousel-slide 30s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    width: calc(100% * var(--slide-count, 5));
    height: 100%;
    display: flex;
}.course-overview .future-class:hover .training-plan {
    animation-play-state: paused;
}.course-overview .career-challenge {
    width: calc(100% / var(--slide-count, 5));
    height: 100%;
    transition: transform 0.5s ease;
    overflow: hidden;
    position: relative;
}.course-overview .career-challenge::before {
    height: 100%;
    left: 0;
    position: absolute;
    content: '';
    z-index: 2;
    top: 0;
    opacity: 0.7;
    background: linear-gradient(to bottom, transparent 40%, #000000 100%);
    width: 100%;
}.course-overview .career-challenge::after {
    position: absolute;
    top: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(165,190,175,0.5),
        rgb(165,190,175,0.5) 2px,
        transparent 2px,
        transparent 4px
    );
    mix-blend-mode: overlay;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    content: '';
}.course-overview .career-challenge img {
    transition: transform 8s ease;
    object-fit: cover;
    height: 100%;
    width: 100%;
    transform: scale(1.05);
    filter: saturate(1.2) contrast(1.1);
}.course-overview .career-challenge:hover img {
    transform: scale(1.15);
}.course-overview .container {
    padding: 2rem 0;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}.course-overview .expert-study {
    width: 100%;
    border-radius: 28px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    transform: translateX(0);
    padding: 3rem;
    animation: float 6s ease-in-out infinite;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}.course-overview .education-plan {
    position: relative;
}.course-overview .education-plan::before {
    content: '';
    height: 40px;
    width: 40px;
    top: -20px;
    opacity: 0.8;
    left: -20px;
    border-left: 2px solid rgb(165,190,175);
    position: absolute;
    border-top: 2px solid rgb(165,190,175);
}.course-overview .education-plan::after {
    opacity: 0.8;
    border-right: 2px solid rgb(132,162,146);
    height: 40px;
    content: '';
    width: 40px;
    bottom: -20px;
    border-bottom: 2px solid rgb(132,162,146);
    position: absolute;
    right: -20px;
}.course-overview .education-plan h3 {
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    position: relative;
    margin-bottom: 1.5rem;
}.course-overview .education-plan h3::after {
    height: 3px;
    width: 60%;
    bottom: -10px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(165,190,175) 0%, transparent 100%);
    content: '';
}.course-overview .education-plan p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}.course-overview .education-plan .request-feedback {
    font-weight: 600;
    text-decoration: none;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 15px;
    background: linear-gradient(135deg, rgb(165,190,175) 0%, rgb(132,162,146) 100%);
    display: inline-block;
    position: relative;
    border-radius: 10px;
    color: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1rem 2.5rem;
}.course-overview .education-plan .request-feedback::before {
    width: 100%;
    content: '';
    z-index: -1;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    position: absolute;
    transition: all 0.4s ease;
}.course-overview .education-plan .request-feedback:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}.course-overview .education-plan .request-feedback:hover::before {
    left: 100%;
    transition: all 0.4s ease;
}

@keyframes carousel-slide {
    0%, 2% {
        transform: translateX(0);
    }
    18%, 22% {
        transform: translateX(calc(-100% / var(--slide-count, 5) * 1));
    }
    38%, 42% {
        transform: translateX(calc(-100% / var(--slide-count, 5) * 2));
    }
    58%, 62% {
        transform: translateX(calc(-100% / var(--slide-count, 5) * 3));
    }
    78%, 82% {
        transform: translateX(calc(-100% / var(--slide-count, 5) * 4));
    }
    98%, 100% {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media screen and (max-width: 1200px) {.course-overview .container {
    justify-content: center;
}.course-overview .expert-study {
    max-width: 80%;
}
}

@media screen and (max-width: 768px) {.course-overview {
    padding: 6rem 0;
    min-height: auto;
}.course-overview .future-class {
    height: 100%;
    position: fixed;
}.course-overview .expert-study {
    max-width: 90%;
    padding: 2rem;
}.course-overview .education-plan h3 {
    font-size: calc(32px * 0.8);
}.course-overview .education-plan p {
    font-size: calc(13px * 0.9);
}.course-overview .education-plan .request-feedback {
    text-align: center;
    width: 100%;
}
}

@media screen and (max-width: 480px) {.course-overview {
    padding: 4rem 0;
}.course-overview .expert-study {
    padding: 1.5rem;
}.course-overview .education-plan h3 {
    font-size: calc(32px * 0.7);
}.course-overview .education-plan::before,
    .course-overview .education-plan::after {
    width: 30px;
    height: 30px;
}@keyframes carousel-slide {
        0%, 5% {
            transform: translateX(0);
        }
        20%, 25% {
            transform: translateX(calc(-100% / var(--slide-count, 5) * 1));
        }
        40%, 45% {
            transform: translateX(calc(-100% / var(--slide-count, 5) * 2));
        }
        60%, 65% {
            transform: translateX(calc(-100% / var(--slide-count, 5) * 3));
        }
        80%, 85% {
            transform: translateX(calc(-100% / var(--slide-count, 5) * 4));
        }
        95%, 100% {
            transform: translateX(0);
        }
    }
}

.course-overview .training-plan {
    --slide-count: 5;
}

@supports (animation-timeline: scroll()) {.course-overview .training-plan {
    animation-timeline: scroll();
    animation-range: 0 100vh;
}}.secure-fence {
    overflow: hidden;
    padding: 4rem 2rem;
    background: linear-gradient(145deg, rgb(199,221,204), #ffffff);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}.secure-fence::before {
    left: 0;
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    opacity: 0.15;
    pointer-events: none;
    top: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgb(132,162,146,0.5), transparent 40%),
        radial-gradient(circle at 90% 10%, rgb(165,190,175,0.5), transparent 45%);
    z-index: 0;
}.secure-fence .container {
    margin: 0 auto;
    max-width: 1140px;
    position: relative;
    animation: fadeIn 0.8s ease-out forwards;
    z-index: 1;
    opacity: 0;
}.secure-fence h1 {
    animation: slideUp 0.7s ease-out forwards 0.2s;
    transform: translateY(10px);
    opacity: 0;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    color: #000000;
    font-size: 43px;
    display: inline-block;
}.secure-fence h1::after {
    left: 0;
    background: rgb(165,190,175);
    position: absolute;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    height: 3px;
    bottom: -0.5rem;
    animation: expandLine 0.7s ease-out forwards 0.7s;
    width: 3.5rem;
}.secure-fence h2 {
    color: #000000;
    animation: slideUp 0.7s ease-out forwards 0.3s;
    transform: translateY(10px);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
    padding-left: 1rem;
    font-size: 35px;
    opacity: 0;
    position: relative;
}.secure-fence h2::before {
    top: 0.25rem;
    border-radius: 2px;
    left: 0;
    width: 4px;
    background: rgb(132,162,146);
    content: "";
    position: absolute;
    height: 85%;
}.secure-fence h3 {
    font-weight: 600;
    transform: translateY(10px);
    margin: 2.2rem 0 1.2rem;
    position: relative;
    color: #000000;
    padding-left: 0.8rem;
    font-size: calc(35px * 0.85);
    animation: slideUp 0.7s ease-out forwards 0.4s;
    opacity: 0;
}.secure-fence h3::before {
    background: rgb(132,162,146);
    position: absolute;
    border-radius: 1.5px;
    opacity: 0.8;
    width: 3px;
    top: 0.25rem;
    left: 0;
    content: "";
    height: 80%;
}.secure-fence h4 {
    opacity: 0;
    margin: 2rem 0 1rem;
    font-size: calc(35px * 0.75);
    color: #000000;
    font-weight: 600;
    transform: translateY(10px);
    animation: slideUp 0.7s ease-out forwards 0.5s;
    padding-left: 0.7rem;
    position: relative;
}.secure-fence h4::before {
    content: "";
    height: 75%;
    top: 0.25rem;
    border-radius: 1px;
    opacity: 0.7;
    background: rgb(132,162,146);
    width: 2px;
    position: absolute;
    left: 0;
}.secure-fence p {
    opacity: 0;
    color: #000000;
    line-height: 1.75;
    transform: translateY(10px);
    margin-bottom: 1.5rem;
    font-size: 18px;
    max-width: 90ch;
    animation: slideUp 0.7s ease-out forwards 0.4s;
}.secure-fence ul {
    animation: fadeIn 0.8s ease-out forwards 0.6s;
    max-width: 85ch;
    margin-bottom: 2rem;
    opacity: 0;
    padding-left: 2rem;
}.secure-fence li {
    font-size: 18px;
    color: #000000;
    line-height: 1.75;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.5rem;
}.secure-fence li::marker {
    font-size: 1.2em;
    color: rgb(165,190,175);
}.secure-fence span {
    transform: translateY(10px);
    margin-bottom: 1.5rem;
    font-size: 18px;
    line-height: 1.75;
    max-width: 90ch;
    color: #000000;
    display: block;
    opacity: 0;
    padding-left: 1rem;
    animation: slideUp 0.7s ease-out forwards 0.5s;
    border-left: 1px solid rgb(132,162,146,0.5);
}.secure-fence strong {
    font-weight: 600;
    color: #000000;
    display: inline-block;
    position: relative;
}

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

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

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

@media (min-width: 768px) {.secure-fence {
    padding: 6rem 3rem;
}.secure-fence .container {
    padding: 0 2rem;
}.secure-fence h1 {
    font-size: calc(43px * 1.1);
    margin-bottom: 3rem;
}.secure-fence h1::after {
    width: 4.5rem;
}.secure-fence h2 {
    font-size: calc(35px * 1.05);
    margin: 3rem 0 1.8rem;
    padding-left: 1.2rem;
}.secure-fence h2::before {
    width: 5px;
}.secure-fence p, 
    .secure-fence li,
    .secure-fence span {
    line-height: 1.8;
    font-size: calc(18px * 1.05);
}
}

@media (min-width: 992px) {.secure-fence {
    background: linear-gradient(165deg, rgb(199,221,204), #ffffff);
    padding: 7rem 4rem;
}.secure-fence .container {
    padding: 0 3rem;
}.secure-fence h1 {
    font-size: calc(43px * 1.2);
    margin-bottom: 3.5rem;
}.secure-fence h1::after {
    width: 5rem;
    height: 4px;
}.secure-fence p {
    margin-bottom: 2rem;
}.secure-fence h2::before {
    background: linear-gradient(to bottom, rgb(165,190,175), rgb(132,162,146));
}.secure-fence li {
    margin-bottom: 1.2rem;
}.secure-fence span {
    padding-left: 1.5rem;
    border-left: 2px solid rgb(132,162,146,0.5);
}
}

@media (min-width: 1200px) {.secure-fence {
    padding: 8rem 5rem;
}.secure-fence::before {
    background: 
            radial-gradient(circle at 5% 95%, rgb(132,162,146,0.5), transparent 40%),
            radial-gradient(circle at 95% 5%, rgb(165,190,175,0.5), transparent 45%);
}.secure-fence .container {
    padding: 0 4rem;
}.secure-fence h1 {
    font-size: calc(43px * 1.3);
}.secure-fence h1::after {
    width: 5.5rem;
    height: 5px;
    bottom: -0.7rem;
}.secure-fence ul {
    padding-left: 2.5rem;
}
}

@media (hover: hover) {.secure-fence li:hover::marker {
    color: rgb(132,162,146);
}.secure-fence strong:hover {
    color: rgb(165,190,175);
    transition: color 0.3s ease;
}
}

@media (max-width: 767px) {.secure-fence {
    padding: 3rem 1.5rem;
}.secure-fence h1 {
    font-size: calc(43px * 0.9);
    margin-bottom: 1.8rem;
}.secure-fence h2 {
    margin: 2rem 0 1.2rem;
    font-size: calc(35px * 0.95);
}.secure-fence p, 
    .secure-fence li,
    .secure-fence span {
    font-size: calc(18px * 0.98);
    line-height: 1.7;
}.secure-fence ul {
    padding-left: 1.5rem;
}
}

@media (prefers-reduced-motion: reduce) {.secure-fence .container,
    .secure-fence h1,
    .secure-fence h2,
    .secure-fence h3,
    .secure-fence h4,
    .secure-fence p,
    .secure-fence ul,
    .secure-fence span {
    animation: none;
    opacity: 1;
    transform: none;
}.secure-fence h1::after {
    transform: scaleX(1);
    animation: none;
}}.quantitative-data {
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: rgb(199,221,204);
    padding: 0;
}.quantitative-data::before {
    content: "";
    z-index: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(to bottom right, rgb(165,190,175,0.5) 0%, transparent 70%);
    top: 0;
    left: 0;
    opacity: 0.1;
}.quantitative-data::after {
    content: "";
    z-index: 0;
    background: 
        linear-gradient(to right, transparent, rgba(0, 0, 0, 0.02) 20%, transparent 30%),
        linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.02) 20%, transparent 30%);
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    background-size: 100px 100px;
    position: absolute;
}.quantitative-data .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    position: relative;
    max-width: 1400px;
    width: 100%;
    gap: 0;
    grid-template-rows: auto auto;
    z-index: 1;
}.quantitative-data .statistics-experts {
    flex-direction: column;
    color: #ffffff;
    padding: 5rem;
    justify-content: center;
    position: relative;
    grid-column: 1;
    background: linear-gradient(135deg, rgb(165,190,175) 0%, rgb(132,162,146) 100%);
    display: flex;
    grid-row: 1 / span 2;
    min-height: 100vh;
}.quantitative-data .statistics-experts::before {
    background: linear-gradient(to left, rgb(199,221,204), transparent);
    right: 0;
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
    content: "";
}.quantitative-data .benefits-block {
    line-height: 1.2;
    margin: 0 0 2rem;
    color: #ffffff;
    font-weight: 700;
    font-size: calc(45px * 1.2);
    position: relative;
}.quantitative-data .benefits-block::after {
    left: 0;
    position: absolute;
    content: "";
    bottom: -1rem;
    height: 4px;
    border-radius: 10px;
    background: #ffffff;
    width: 80px;
}.quantitative-data .statistics-boosters {
    max-width: 600px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 17px;
}.quantitative-data .statistics-perks {
    flex-direction: column;
    grid-row: 1 / span 2;
    grid-column: 2;
    gap: 3rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    justify-content: center;
    padding: 5rem;
    display: flex;
    background: #ffffff;
}.quantitative-data .class-statistics {
    position: relative;
    display: flex;
    transition: all 0.3s ease;
    align-items: center;
    padding: 0;
}.quantitative-data .class-statistics:hover {
    transform: translateX(10px);
}.quantitative-data .class-statistics h4 {
    margin: 0 2rem 0 0;
    font-size: calc(45px * 1.5);
    position: relative;
    flex: 0 0 auto;
    padding-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(165,190,175);
}.quantitative-data .class-statistics:nth-child(even) h4 {
    color: rgb(132,162,146);
}.quantitative-data .class-statistics h4::after {
    bottom: 0;
    background: currentColor;
    width: 100%;
    left: 0;
    height: 2px;
    position: absolute;
    content: "";
    transition: all 0.3s ease;
    opacity: 0.3;
}.quantitative-data .class-statistics:hover h4::after {
    width: 120%;
    opacity: 0.8;
}.quantitative-data .class-statistics span {
    padding-left: 2rem;
    font-weight: 400;
    color: #000000;
    flex: 1;
    line-height: 1.5;
    position: relative;
    font-size: 17px;
}.quantitative-data .class-statistics span::before {
    width: 1px;
    opacity: 0.5;
    left: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgb(165,190,175,0.5), transparent);
    transform: translateY(-50%);
    content: "";
    position: absolute;
    top: 50%;
}.quantitative-data .class-statistics:nth-child(even) span::before {
    background: linear-gradient(to bottom, transparent, rgb(132,162,146,0.5), transparent);
}.quantitative-data svg {
    top: 50%;
    height: 24px;
    position: absolute;
    opacity: 0.7;
    width: 24px;
    fill: rgb(165,190,175,0.5);
    transform: translateY(-50%);
    right: 0;
    transition: all 0.3s ease;
}.quantitative-data .class-statistics:nth-child(even) svg {
    fill: rgb(132,162,146,0.5);
}.quantitative-data svg path {
    fill: inherit;
}.quantitative-data .class-statistics:hover svg {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

@media (max-width: 1200px) {.quantitative-data .container {
    grid-template-columns: 1.2fr 0.8fr;
}.quantitative-data .statistics-experts {
    padding: 3rem;
}.quantitative-data .statistics-perks {
    padding: 3rem;
}.quantitative-data .class-statistics h4 {
    margin-right: 1.5rem;
    font-size: calc(45px * 1.2);
}
}

@media (max-width: 992px) {.quantitative-data {
    min-height: auto;
}.quantitative-data .container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
}.quantitative-data .statistics-experts {
    grid-row: 1;
    padding: 4rem 3rem;
    min-height: auto;
    grid-column: 1;
}.quantitative-data .statistics-experts::before {
    display: none;
}.quantitative-data .statistics-perks {
    padding: 4rem 3rem;
    grid-column: 1;
    grid-row: 2;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}.quantitative-data .benefits-block {
    margin-bottom: 1.5rem;
    font-size: calc(36px * 1.1);
}.quantitative-data .benefits-block::after {
    height: 3px;
    width: 60px;
    bottom: -0.8rem;
}
}

@media (max-width: 768px) {.quantitative-data .statistics-experts {
    padding: 3rem 2rem;
}.quantitative-data .statistics-perks {
    padding: 3rem 2rem;
    gap: 2.5rem;
}.quantitative-data .class-statistics h4 {
    font-size: calc(36px * 1.2);
    margin-right: 1.2rem;
}.quantitative-data .class-statistics span {
    font-size: calc(17px * 0.95);
    padding-left: 1.5rem;
}
}

@media (max-width: 576px) {.quantitative-data .statistics-experts {
    padding: 2.5rem 1.5rem;
}.quantitative-data .statistics-perks {
    gap: 2rem;
    padding: 2.5rem 1.5rem;
}.quantitative-data .class-statistics {
    flex-direction: column;
    align-items: flex-start;
}.quantitative-data .class-statistics h4 {
    margin: 0 0 1rem 0;
}.quantitative-data .class-statistics span {
    padding-left: 0;
}.quantitative-data .class-statistics span::before {
    display: none;
}.quantitative-data svg {
    top: 0;
    right: 0;
    transform: none;
}.quantitative-data .class-statistics:hover svg {
    transform: scale(1.2);
}.quantitative-data .benefits-block {
    font-size: 36px;
    margin-bottom: 1.2rem;
}.quantitative-data .benefits-block::after {
    bottom: -0.6rem;
    height: 3px;
    width: 50px;
}.quantitative-data .statistics-boosters {
    font-size: calc(17px * 0.9);
    line-height: 1.7;
}}.title-opener {
    min-height: 600px;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(45deg, #000000 0%, rgb(132,162,146,0.5) 100%);
}.title-opener .expert-study {
    display: grid;
    height: 100%;
    grid-template-rows: 1fr;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}.title-opener .course-hero {
    top: 0;
    height: 100%;
    width: 60%;
    z-index: 1;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    right: 0;
    position: absolute;
}.title-opener .course-hero::before {
    top: 0;
    position: absolute;
    height: 100%;
    content: '';
    width: 100%;
    left: 0;
    z-index: 2;
    background: linear-gradient(
        to left,
        transparent 30%,
        rgba(0, 0, 0, 0.5) 100%
    );
}.title-opener .start-begin {
    display: flex;
    width: 500%;
    height: 100%;
    animation: staggered-carousel 25s ease-in-out infinite;
}.title-opener .start-open {
    width: 20%;
    position: relative;
    height: 100%;
    overflow: hidden;
}.title-opener .start-open::before {
    content: '';
    inset: 0;
    mix-blend-mode: color;
    position: absolute;
    z-index: 2;
    background: rgb(165,190,175,0.5);
    opacity: 0.3;
}.title-opener .start-open::after {
    content: '';
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 2px,
        rgb(165,190,175,0.5) 2px,
        rgb(165,190,175,0.5) 4px
    );
    opacity: 0.1;
    z-index: 2;
    position: absolute;
}.title-opener .start-open img {
    filter: brightness(0.9) contrast(1.1);
    object-fit: cover;
    transform: scale(1);
    width: 100%;
    transition: transform 1s ease;
    height: 100%;
}.title-opener .start-open:hover img {
    transform: scale(1.05);
}.title-opener .content-zone {
    padding: 0;
    position: relative;
    justify-self: center;
    max-width: 500px;
    grid-column: 1;
    width: 80%;
    z-index: 10;
    align-self: center;
}.title-opener .content-zone::before {
    height: 70px;
    border-top: 4px solid rgb(165,190,175);
    width: 70px;
    opacity: 0.8;
    top: -20px;
    content: '';
    left: -20px;
    position: absolute;
    border-left: 4px solid rgb(165,190,175);
}.title-opener .content-zone::after {
    border-right: 4px solid rgb(165,190,175);
    height: 70px;
    border-bottom: 4px solid rgb(165,190,175);
    position: absolute;
    content: '';
    width: 70px;
    right: -20px;
    bottom: -20px;
    opacity: 0.8;
}.title-opener .content-zone h1 {
    line-height: 1.3;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    padding-bottom: 15px;
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}.title-opener .content-zone h1::after {
    height: 4px;
    bottom: 0;
    left: 0;
    position: absolute;
    content: '';
    background: rgb(165,190,175);
    width: 80px;
    animation: heading-line 3s ease infinite;
}.title-opener .content-zone p {
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
    font-size: 15px;
    color: #ffffff;
}.title-opener .content-zone .request-feedback {
    position: relative;
    display: inline-block;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 14px 35px;
    color: #ffffff;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(
        to right,
        rgb(165,190,175) 0%,
        rgb(132,162,146) 100%
    );
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    font-size: 15px;
}.title-opener .content-zone .request-feedback::before {
    width: 100%;
    transition: opacity 0.3s ease;
    left: 0;
    content: '';
    opacity: 0;
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(
        to right,
        rgb(132,162,146) 0%,
        rgb(165,190,175) 100%
    );
    z-index: -1;
}.title-opener .content-zone .request-feedback:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}.title-opener .content-zone .request-feedback:hover::before {
    opacity: 1;
}

@keyframes staggered-carousel {
    0%, 16% {
        transform: translateX(0);
    }
    20%, 36% {
        transform: translateX(-20%);
    }
    40%, 56% {
        transform: translateX(-40%);
    }
    60%, 76% {
        transform: translateX(-60%);
    }
    80%, 96% {
        transform: translateX(-80%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes heading-line {
    0%, 100% {
        width: 80px;
    }
    50% {
        width: 120px;
    }
}

@media (max-width: 1200px) {.title-opener .course-hero {
    width: 65%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}.title-opener .content-zone {
    width: 85%;
    max-width: 450px;
}
}

@media (max-width: 992px) {.title-opener .expert-study {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
}.title-opener .course-hero {
    height: 100%;
    width: 100%;
    clip-path: none;
    position: absolute;
}.title-opener .course-hero::before {
    background: linear-gradient(
            to bottom,
            #000000 0%,
            transparent 30%,
            transparent 70%,
            #000000 100%
        );
}.title-opener .content-zone {
    border-radius: 15px;
    backdrop-filter: blur(8px);
    background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 100%
        );
    grid-column: 1;
    padding: 2.5rem;
    max-width: 550px;
    margin: 0 auto;
    width: 90%;
}
}

@media (max-width: 768px) {.title-opener {
    min-height: 500px;
}.title-opener .content-zone {
    padding: 2rem;
}.title-opener .content-zone h1 {
    font-size: calc(41px * 0.9);
}.title-opener .content-zone p {
    font-size: calc(15px * 0.95);
}.title-opener .content-zone::before,
    .title-opener .content-zone::after {
    height: 50px;
    width: 50px;
}
}

@media (max-width: 576px) {.title-opener {
    min-height: 450px;
}.title-opener .content-zone {
    padding: 1.5rem;
}.title-opener .content-zone h1 {
    font-size: calc(41px * 0.8);
}.title-opener .content-zone p {
    margin-bottom: 2rem;
    font-size: calc(15px * 0.9);
}.title-opener .content-zone .request-feedback {
    text-align: center;
    width: 100%;
    padding: 12px 25px;
}.title-opener .content-zone::before,
    .title-opener .content-zone::after {
    height: 40px;
    top: -10px;
    left: -10px;
    width: 40px;
}.title-opener .content-zone::after {
    bottom: -10px;
    right: -10px;
}
}

@media (orientation: landscape) and (max-height: 600px) {.title-opener {
    min-height: 450px;
    height: auto;
}.title-opener .expert-study {
    min-height: 450px;
}.title-opener .content-zone {
    padding: 1.5rem;
}.title-opener .content-zone h1 {
    margin-bottom: 1rem;
}.title-opener .content-zone p {
    margin-bottom: 1.5rem;
}}.location-details {
    overflow: hidden;
    padding: 100px 0;
    background: rgb(199,221,204);
    position: relative;
}.location-details::before {
    z-index: 0;
    height: 100%;
    left: 0;
    background-size: 30px 30px;
    width: 100%;
    content: '';
    position: absolute;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    top: 0;
}.location-details .container {
    position: relative;
    z-index: 1;
}.location-details .reach-team {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(199,221,204) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 50px;
    border-radius: 10px;
}.location-details .reach-team::before {
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, rgb(165,190,175) 0%, rgb(132,162,146) 100%);
    left: 0;
    height: 5px;
    width: 100%;
    content: '';
}.location-details .reach-team h2 {
    font-size: 28px;
    font-weight: 700;
    color: rgb(165,190,175);
    position: relative;
    margin-bottom: 20px;
}.location-details .reach-team p {
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 700px;
    color: #000000;
    font-size: 18px;
}.location-details .reach-team p:last-of-type {
    padding-left: 30px;
    margin-bottom: 40px;
    position: relative;
}.location-details .reach-form {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
}.location-details .get-contactform {
    text-decoration: none;
    display: flex;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 110px;
    height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
    flex-direction: column;
}.location-details .get-contactform::before {
    height: 100%;
    background: linear-gradient(135deg, rgb(165,190,175,0.5) 0%, rgb(132,162,146,0.5) 100%);
    width: 100%;
    z-index: -1;
    top: 0;
    opacity: 0;
    position: absolute;
    content: '';
    transition: opacity 0.4s ease;
    left: 0;
}.location-details .get-contactform::after {
    bottom: 0;
    position: absolute;
    width: 100%;
    left: 0;
    height: 3px;
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleX(0);
    content: '';
    background: rgb(165,190,175);
}.location-details .get-contactform:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}.location-details .get-contactform:hover::before {
    opacity: 0.1;
}.location-details .get-contactform:hover::after {
    transform: scaleX(1);
}.location-details .get-contactform svg {
    fill: none;
    stroke-width: 2;
    stroke: rgb(165,190,175);
    height: 36px;
    margin-bottom: 12px;
    width: 36px;
    transition: all 0.3s ease;
}.location-details .get-contactform:hover svg {
    transform: scale(1.1);
    stroke: rgb(165,190,175);
}.location-details .get-contactform span {
    color: #000000;
    text-align: center;
    font-size: calc(18px * 0.85);
    transition: all 0.3s ease;
    font-weight: 600;
}.location-details .get-contactform:hover span {
    color: rgb(165,190,175);
}.location-details .reach-team p:last-of-type svg {
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    left: 0;
    stroke-width: 2;
    fill: none;
    stroke: rgb(165,190,175);
    position: absolute;
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.05;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.08;
    }
}

@media screen and (max-width: 991px) {.location-details {
    padding: 80px 0;
}.location-details .reach-team {
    padding: 40px;
}.location-details .get-contactform {
    width: 100px;
    height: 100px;
}
}

@media screen and (max-width: 767px) {.location-details {
    padding: 60px 0;
}.location-details .reach-team {
    padding: 30px;
}.location-details .reach-team h2 {
    font-size: calc(28px * 0.9);
}.location-details .reach-form {
    gap: 20px;
    justify-content: center;
}.location-details .get-contactform {
    width: 90px;
    height: 90px;
}.location-details .get-contactform svg {
    height: 30px;
    width: 30px;
    margin-bottom: 8px;
}
}

@media screen and (max-width: 480px) {.location-details {
    padding: 50px 0;
}.location-details .reach-team {
    padding: 25px 20px;
}.location-details .reach-team h2 {
    font-size: calc(28px * 0.85);
}.location-details .get-contactform {
    height: 80px;
    width: 80px;
}.location-details .get-contactform svg {
    height: 28px;
    width: 28px;
    margin-bottom: 6px;
}.location-details .get-contactform span {
    font-size: calc(18px * 0.8);
}
}