* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.wrap-container {
    min-height: 100%;
    flex-direction: column;
    height: 100%;
    display: flex;
}svg {
    width: 30px;
    height: 30px;
}.mobile_cta {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}html,body {
    font-family: Arial, sans-serif;
    height: 100%;
    color: #000000;
    min-height: 100%;
}.top_bar {
    flex: 1 0 auto;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1134px;
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.welcome {
    min-height: 100vh;
    justify-content: center;
    overflow: hidden;
    display: flex;
    position: relative;
    align-items: center;
    background: linear-gradient(135deg, rgb(240,224,205) 0%, #ffffff 100%);
}.welcome::before {
    opacity: 0.05;
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    z-index: 1;
    top: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(226,190,154,0.5) 0px,
        transparent 2px,
        transparent 10px
    );
    height: 100%;
}.welcome .ethos_block {
    position: relative;
    width: 100%;
    z-index: 2;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    padding: 2rem;
    display: grid;
}.welcome h1 {
    color: #000000;
    position: relative;
    animation: slideInTitle 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    grid-column: 1 / -1;
    transform: translateY(-10px);
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    font-size: 44px;
}.welcome h1::after {
    height: 4px;
    width: 80px;
    content: "";
    transform: scaleX(0);
    animation: expandLine 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards;
    position: absolute;
    transform-origin: left;
    background: rgb(226,190,154);
    left: 0;
    bottom: -10px;
}.welcome .text_cell {
    transform: translateX(-20px);
    opacity: 0;
    display: flex;
    position: relative;
    justify-content: center;
    flex-direction: column;
    animation: fadeSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
    z-index: 3;
}.welcome .start_front {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08),
                0 5px 15px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform 0.5s ease;
    border-radius: 25px;
    z-index: 2;
    padding: 2.5rem;
    position: relative;
}.welcome .start_front:hover {
    transform: perspective(1000px) rotateY(0);
}.welcome .start_front::before {
    border-radius: 25px;
    width: 100%;
    opacity: 0.1;
    background: linear-gradient(135deg, rgb(226,190,154,0.5) 0%, transparent 80%);
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
}.welcome .start_front p {
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    font-size: calc(13px * 1.2);
    color: #000000;
}.welcome .start_front p::first-letter {
    font-size: calc(13px * 1.8);
    color: rgb(226,190,154);
    font-weight: 700;
}.welcome svg {
    margin: 2rem auto;
    width: 100px;
    display: block;
    transform-origin: center;
    height: 100px;
    animation: pulseGently 4s ease-in-out infinite;
}.welcome svg path {
    fill: rgb(226,190,154);
    transition: fill 0.3s ease;
}.welcome svg:hover path {
    fill: rgb(208,154,106);
}.welcome svg text {
    transition: all 0.3s ease;
    font-weight: 700;
}.welcome svg:hover text {
    fill: #000000;
}.welcome .help_inquiry {
    font-size: 19px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
    margin-top: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-align: center;
    z-index: 2;
    color: #ffffff;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, rgb(226,190,154) 0%, rgb(208,154,106) 100%);
    padding: 1rem 2rem;
}.welcome .help_inquiry::before {
    left: -100%;
    position: absolute;
    height: 100%;
    top: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    content: "";
    width: 100%;
}.welcome .help_inquiry:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}.welcome .help_inquiry:hover::before {
    left: 100%;
}.welcome .img_rounded {
    transition: transform 0.5s ease;
    animation: fadeSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
    width: 100%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15),
               -20px -20px 60px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    height: 450px;
    opacity: 0;
    border-radius: 25px;
    position: relative;
    transform: translateX(20px);
}.welcome .img_rounded:hover {
    transform: scale(1.02) perspective(1000px) rotateY(3deg);
}.welcome .img_rounded::after {
    background: linear-gradient(135deg, rgb(226,190,154,0.5) 0%, transparent 70%);
    content: "";
    z-index: 1;
    left: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
}

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

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

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes pulseGently {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 992px) {.welcome .ethos_block {
    grid-template-columns: 1fr;
}.welcome h1 {
    font-size: calc(44px * 0.9);
}.welcome .start_front {
    padding: 2rem;
    transform: perspective(1000px) rotateY(0);
}.welcome .img_rounded {
    order: -1;
    height: 350px;
}
}

@media (max-width: 768px) {.welcome {
    padding: 3rem 0;
}.welcome .ethos_block {
    padding: 1.5rem;
}.welcome h1 {
    font-size: calc(44px * 0.8);
}.welcome .start_front p {
    font-size: 13px;
}.welcome svg {
    width: 80px;
    margin: 1.5rem auto;
    height: 80px;
}.welcome .help_inquiry {
    width: 100%;
}.welcome .img_rounded {
    height: 280px;
}
}

@media (max-width: 576px) {.welcome .ethos_block {
    padding: 1rem;
}.welcome h1 {
    font-size: calc(44px * 0.7);
}.welcome .start_front {
    padding: 1.5rem;
}.welcome .img_rounded {
    height: 240px;
}.welcome .start_front p::first-letter {
    font-size: calc(13px * 1.4);
}}.training_specialist {
    overflow: hidden;
    background: linear-gradient(170deg, rgb(240,224,205), #ffffff);
    position: relative;
    padding: 100px 0;
}.training_specialist::before {
    height: 500px;
    right: -200px;
    width: 500px;
    top: -200px;
    background-color: rgb(226,190,154,0.5);
    position: absolute;
    content: "";
    opacity: 0.1;
    border-radius: 50%;
}.training_specialist .container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}.training_specialist .student_perspectives {
    border-radius: 15px;
    display: flex;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 50px;
    flex-direction: column;
    max-width: 800px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #ffffff;
}.training_specialist .student_perspectives:hover {
    transform: translateY(-10px);
}.training_specialist .student_perspectives::before {
    position: absolute;
    height: 30px;
    top: -15px;
    width: 30px;
    background-color: rgb(208,154,106);
    left: 50px;
    z-index: -1;
    content: "";
    transform: rotate(45deg);
}.training_specialist .student_perspectives::after {
    content: "";
    z-index: -1;
    position: absolute;
    height: 30px;
    background-color: rgb(226,190,154);
    bottom: -15px;
    transform: rotate(45deg);
    right: 50px;
    width: 30px;
}.training_specialist .img_rounded {
    border: 4px solid #ffffff;
    position: relative;
    align-self: center;
    width: 120px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 120px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    margin-bottom: 30px;
}.training_specialist .student_perspectives:hover .img_rounded {
    transform: scale(1.05);
}.training_specialist .img_rounded::before {
    opacity: 0;
    transition: opacity 0.3s ease;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgb(226,190,154,0.5));
    content: "";
    position: absolute;
}.training_specialist .student_perspectives:hover .img_rounded::before {
    opacity: 1;
}.training_specialist .job_achievements {
    order: 3;
    padding: 20px 30px;
    line-height: 1.8;
    color: #000000;
    background-color: rgb(240,224,205);
    position: relative;
    border-radius: 15px;
    font-size: 17px;
    margin: 25px 0 0;
}.training_specialist .job_achievements::before {
    border-bottom: 10px solid rgb(240,224,205);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    position: absolute;
    top: -10px;
    left: 30px;
}.training_specialist .name {
    font-size: 24px;
    color: #000000;
    order: 1;
    display: block;
    font-weight: 700;
    margin: 5px 0;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}.training_specialist .name::after {
    width: 40px;
    position: absolute;
    left: 50%;
    height: 2px;
    content: "";
    transition: width 0.3s ease;
    background-color: rgb(226,190,154);
    transform: translateX(-50%);
    bottom: 0;
}.training_specialist .student_perspectives:hover .name::after {
    width: 80px;
}.training_specialist span:not(.name) {
    font-size: calc(17px * 0.9);
    text-align: center;
    font-weight: 600;
    order: 2;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: rgb(208,154,106);
}

@media (min-width: 768px) {.training_specialist .student_perspectives {
    grid-template-areas: 
            "photo name"
            "photo job"
            "quote quote";
    align-items: center;
    grid-template-columns: auto 1fr;
    display: grid;
    gap: 10px 30px;
}.training_specialist .img_rounded {
    height: 180px;
    grid-area: photo;
    width: 180px;
    margin-bottom: 0;
    align-self: start;
}.training_specialist .name {
    font-size: 29px;
    text-align: left;
    grid-area: name;
}.training_specialist .name::after {
    transform: none;
    left: 0;
}.training_specialist span:not(.name) {
    grid-area: job;
    text-align: left;
    margin-bottom: 0;
}.training_specialist .job_achievements {
    margin-top: 30px;
    grid-area: quote;
}
}

@media (max-width: 768px) {.training_specialist {
    padding: 70px 0;
}.training_specialist .student_perspectives {
    padding: 40px 30px;
}
}

@media (max-width: 576px) {.training_specialist {
    padding: 50px 0;
}.training_specialist .student_perspectives {
    padding: 30px 20px;
}.training_specialist .job_achievements {
    margin-top: 20px;
    padding: 15px 20px;
}}.statistical_details {
    background: linear-gradient(135deg, rgb(240,224,205) 0%, rgb(208,154,106,0.5) 100%);
    perspective: 1000px;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}.statistical_details::before {
    pointer-events: none;
    left: 0;
    opacity: 0.05;
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        rgb(226,190,154,0.5) 0px,
        transparent 2px,
        transparent 10px,
        rgb(226,190,154,0.5) 12px
    );
    z-index: 1;
    top: 0;
}.statistical_details::after {
    pointer-events: none;
    height: 200%;
    z-index: 0;
    background: linear-gradient(to bottom right, rgb(226,190,154,0.5) 0%, transparent 70%);
    top: -50%;
    content: "";
    width: 70%;
    right: -20%;
    position: absolute;
    transform: rotate(15deg);
}.statistical_details .container {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    transform-style: preserve-3d;
    max-width: 1400px;
}.statistical_details ul {
    margin-bottom: 4rem;
    gap: 2.5rem;
    display: grid;
    padding: 0;
    list-style: none;
    transform-style: preserve-3d;
    margin: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.statistical_details .pro_gains {
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}.statistical_details .pro_gains:hover {
    transform: translateZ(20px) scale(1.02);
}.statistical_details .pro_gains div {
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s ease;
    flex-direction: column;
    background: #ffffff;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-radius: 10px;
    padding: 2.5rem 1.5rem;
    position: relative;
    text-align: center;
}.statistical_details .pro_gains div::before {
    background: linear-gradient(90deg, rgb(226,190,154) 0%, rgb(208,154,106) 100%);
    height: 5px;
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    width: 100%;
    z-index: 1;
}.statistical_details .pro_gains div::after {
    bottom: 0;
    transition: all 0.4s ease;
    content: "";
    z-index: -1;
    right: 0;
    height: 40%;
    width: 50%;
    opacity: 0.1;
    position: absolute;
    background: linear-gradient(135deg, transparent 50%, rgb(208,154,106,0.5) 100%);
}.statistical_details .pro_gains:hover div::after {
    height: 50%;
    opacity: 0.15;
    width: 60%;
}.statistical_details .pro_gains p {
    position: relative;
    font-size: calc(29px * 1.5);
    margin: 0 0 0.5rem;
    transition: transform 0.3s ease;
    line-height: 1;
    color: rgb(226,190,154);
    font-weight: 700;
}.statistical_details .pro_gains:hover p {
    transform: translateY(-5px);
}.statistical_details .pro_gains p::after {
    content: "";
    left: 50%;
    height: 3px;
    transition: width 0.3s ease;
    bottom: -10px;
    background: rgb(208,154,106);
    opacity: 0.7;
    position: absolute;
    transform: translateX(-50%);
    width: 40px;
}.statistical_details .pro_gains:hover p::after {
    width: 60px;
}.statistical_details .pro_gains span {
    transition: all 0.3s ease;
    font-size: 17px;
    margin-top: 1rem;
    color: #000000;
    display: block;
    position: relative;
    font-weight: 600;
    z-index: 2;
}.statistical_details h4 {
    font-weight: 700;
    transform: translateZ(30px);
    color: #000000;
    position: relative;
    letter-spacing: 0.5px;
    text-align: center;
    padding-bottom: 1rem;
    margin: 0;
    font-size: 19px;
}.statistical_details h4::before {
    background: rgb(226,190,154);
    content: "";
    height: 3px;
    bottom: 0;
    left: 50%;
    width: 80px;
    position: absolute;
    transform: translateX(-50%);
}

@media (min-width: 992px) {.statistical_details {
    padding: 7rem 3rem;
}.statistical_details ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}.statistical_details h4 {
    font-size: calc(19px * 1.2);
}.statistical_details .pro_gains p {
    font-size: calc(48px * 1.2);
}
}

@media (min-width: 768px) and (max-width: 991px) {.statistical_details ul {
    grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 576px) and (max-width: 767px) {.statistical_details ul {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 575px) {.statistical_details {
    padding: 4rem 1.5rem;
}.statistical_details ul {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.statistical_details .pro_gains div {
    padding: 2rem 1rem;
}.statistical_details .pro_gains p {
    font-size: 29px;
}.statistical_details h4 {
    font-size: 18px;
}
}

@media (prefers-reduced-motion: reduce) {.statistical_details .pro_gains,
    .statistical_details .pro_gains:hover,
    .statistical_details .pro_gains p,
    .statistical_details .pro_gains:hover p,
    .statistical_details .pro_gains div::after,
    .statistical_details .pro_gains:hover div::after,
    .statistical_details .pro_gains p::after,
    .statistical_details .pro_gains:hover p::after {
    transform: none;
    transition: none;
}}.course_rewards {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(240,224,205) 0%, rgb(226,190,154,0.5) 100%);
    padding: 90px 0;
}.course_rewards::before {
    opacity: 0.4;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
    background: radial-gradient(circle at 75% 25%, rgb(208,154,106,0.5) 0%, transparent 50%);
    position: absolute;
    left: 0;
}.course_rewards .container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}.course_rewards .ethos_block {
    display: flex;
    align-items: center;
    gap: 50px;
}.course_rewards .img_rounded {
    max-width: 38%;
    position: relative;
    transform: translateY(-10px);
    z-index: 1;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    flex: 0 0 38%;
    transition: all 0.5s ease;
}.course_rewards .img_rounded::after {
    z-index: -1;
    bottom: -15px;
    content: "";
    border-radius: 16px;
    right: -15px;
    top: 15px;
    border: 2px solid rgb(226,190,154,0.5);
    opacity: 0.5;
    transition: all 0.5s ease;
    left: 15px;
    position: absolute;
}.course_rewards .img_rounded:hover {
    transform: translateY(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.course_rewards .img_rounded:hover::after {
    opacity: 0.7;
    right: -10px;
    top: 10px;
    left: 10px;
    bottom: -10px;
}.course_rewards .text_cell {
    border-radius: 16px;
    flex: 0 0 55%;
    position: relative;
    padding: 40px 35px;
    z-index: 1;
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}.course_rewards .text_cell::before {
    position: absolute;
    width: 6px;
    border-radius: 10px;
    top: 0;
    background: linear-gradient(to bottom, rgb(226,190,154), rgb(208,154,106));
    height: 100%;
    left: 0;
    content: "";
}.course_rewards h3 {
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    color: #000000;
    padding-left: 15px;
    font-size: 32px;
}.course_rewards h3::after {
    background: rgb(226,190,154);
    border-radius: 10px;
    left: 15px;
    content: "";
    bottom: -12px;
    width: 80px;
    position: absolute;
    height: 3px;
}.course_rewards ul {
    padding: 0 0 0 15px;
    gap: 15px;
    margin: 0;
    flex-direction: column;
    display: flex;
    list-style: none;
}.course_rewards li {
    padding: 15px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #ffffff, rgb(240,224,205) 180%);
    border-radius: 8px;
    position: relative;
}.course_rewards li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(90deg, #ffffff, rgb(208,154,106,0.5) 180%);
}.course_rewards li p {
    gap: 16px;
    align-items: center;
    font-weight: 400;
    color: #000000;
    display: flex;
    line-height: 1.5;
    font-size: 17px;
    margin: 0;
}.course_rewards svg {
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 24px;
    width: 24px;
    flex-shrink: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 5px;
}.course_rewards svg path {
    fill: rgb(226,190,154);
    transition: fill 0.3s ease;
}.course_rewards li:hover svg {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}.course_rewards li:hover svg path {
    fill: rgb(208,154,106);
}

@media (max-width: 992px) {.course_rewards {
    padding: 70px 0;
}.course_rewards .ethos_block {
    gap: 40px;
    flex-direction: column;
}.course_rewards .img_rounded {
    max-width: 60%;
    flex: none;
    margin: 0 auto;
}.course_rewards .text_cell {
    width: 90%;
    flex: none;
    margin: 0 auto;
}.course_rewards .text_cell::before {
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
}
}

@media (max-width: 576px) {.course_rewards {
    padding: 50px 0;
}.course_rewards .img_rounded {
    max-width: 80%;
}.course_rewards .img_rounded::after {
    display: none;
}.course_rewards .text_cell {
    padding: 30px 20px;
    width: 100%;
}.course_rewards h3 {
    font-size: 21px;
    margin-bottom: 25px;
}.course_rewards ul {
    gap: 12px;
}.course_rewards li {
    padding: 12px;
}.course_rewards svg {
    width: 22px;
    height: 22px;
}}.course_program_info {
    position: relative;
    background-color: #000000;
    overflow: hidden;
    padding: 100px 0;
}.course_program_info::before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    z-index: 1;
    top: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgb(226,190,154,0.5) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgb(208,154,106,0.5) 0%, transparent 40%);
    left: 0;
}.course_program_info::after {
    top: 0;
    position: absolute;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
    z-index: 1;
}.course_program_info .container {
    z-index: 2;
    position: relative;
}.course_program_info .skill_up {
    min-height: 500px;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "image title"
        "desc1 desc2";
    display: grid;
}.course_program_info .text_cell {
    display: contents;
}.course_program_info .text_cell h2 {
    align-self: center;
    border-radius: 10px;
    font-size: 38px;
    grid-area: title;
    margin: 0;
    backdrop-filter: blur(5px);
    opacity: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    padding: 30px;
    transform: translateX(-30px);
    animation: slide-in 0.8s forwards 0.2s;
    font-weight: 700;
    color: #ffffff;
    border-left: 3px solid rgb(226,190,154);
}.course_program_info .text_cell .description:nth-of-type(1) {
    transform: translateY(30px);
    opacity: 0;
    grid-area: desc1;
    animation: fade-up 0.8s forwards 0.4s;
}.course_program_info .text_cell .description:nth-of-type(2) {
    animation: fade-up 0.8s forwards 0.6s;
    grid-area: desc2;
    transform: translateY(30px);
    opacity: 0;
}.course_program_info .text_cell .description {
    line-height: 1.8;
    overflow: hidden;
    border-top: 3px solid rgb(208,154,106);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 14px;
    position: relative;
    margin: 0;
    color: #000000;
    padding: 25px;
    backdrop-filter: blur(5px);
}.course_program_info .text_cell .description::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    position: absolute;
    top: 0;
    pointer-events: none;
    content: "";
    height: 100%;
    left: 0;
    width: 100%;
}.course_program_info .img_rounded {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    min-height: 100%;
    grid-area: image;
    border-radius: 10px;
}.course_program_info .img_rounded::before {
    content: "";
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 100%);
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

@keyframes slide-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    95% {
        opacity: 0.5;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (max-width: 991px) {.course_program_info {
    padding: 80px 0;
}.course_program_info .skill_up {
    grid-template-areas:
            "image image"
            "title title"
            "desc1 desc2";
    min-height: auto;
}.course_program_info .img_rounded {
    height: 400px;
}
}

@media (max-width: 767px) {.course_program_info {
    padding: 60px 0;
}.course_program_info .skill_up {
    grid-template-areas:
            "image"
            "title"
            "desc1"
            "desc2";
    gap: 20px;
    grid-template-columns: 1fr;
}.course_program_info .img_rounded {
    height: 350px;
}.course_program_info .text_cell h2 {
    font-size: calc(38px * 0.9);
    padding: 20px;
}.course_program_info .text_cell .description {
    padding: 20px;
}

}

@media (max-width: 480px) {.course_program_info {
    padding: 40px 0;
}.course_program_info .img_rounded {
    height: 250px;
}.course_program_info .text_cell h2 {
    font-size: calc(38px * 0.8);
    padding: 15px;
}.course_program_info .text_cell .description {
    padding: 15px;
    font-size: calc(14px * 0.95);
}.course_program_info .tech-element {
    display: none;
}}.about_this {
    overflow: hidden;
    padding: 120px 0;
    color: #ffffff;
    position: relative;
}.about_this::before {
    z-index: 1;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    background: linear-gradient(135deg, rgb(226,190,154,0.5), rgba(0, 0, 0, 0.5) 70%);
    width: 100%;
    height: 100%;
}.about_this::after {
    position: absolute;
    transform: rotate(15deg);
    border: 3px solid rgb(208,154,106);
    bottom: -50px;
    content: "";
    opacity: 0.3;
    width: 250px;
    right: -50px;
    z-index: 1;
    height: 250px;
}.about_this .container {
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
}.about_this .text_cell {
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    padding: 40px;
    border-left: 4px solid rgb(208,154,106);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: slideUp 0.8s ease-out forwards;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}.about_this .text_cell::before {
    content: "";
    z-index: -1;
    position: absolute;
    height: 30px;
    left: 30px;
    width: 80px;
    background-color: rgb(208,154,106);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    top: -15px;
}.about_this h5 {
    letter-spacing: 2px;
    transform: translateX(-10px);
    position: relative;
    font-size: 19px;
    margin: 0 0 15px 0;
    display: inline-block;
    animation: slideRight 0.6s ease-out 0.3s forwards;
    text-transform: uppercase;
    opacity: 0;
    font-weight: 700;
    color: rgb(208,154,106);
}.about_this h5::after {
    animation: expandLine 0.6s ease-out 0.9s forwards;
    height: 2px;
    transform: scaleX(0);
    bottom: -5px;
    background: linear-gradient(to right, rgb(208,154,106), transparent);
    position: absolute;
    left: 0;
    content: "";
    transform-origin: left;
    width: 100%;
}.about_this p {
    opacity: 0;
    margin: 0 0 20px 0;
    animation: fadeIn 0.6s ease-out 0.6s forwards;
    transform: translateY(10px);
    font-size: calc(15px * 1.2);
}.about_this p b {
    font-weight: 700;
    color: #ffffff;
    font-size: calc(18px * 1.1);
    display: inline-block;
    padding-right: 15px;
    position: relative;
}.about_this p b::after {
    content: "";
    right: 0;
    position: absolute;
    height: 8px;
    transform: translateY(-50%);
    background-color: rgb(208,154,106);
    border-radius: 50%;
    width: 8px;
    top: 50%;
}.about_this ol {
    position: relative;
    padding: 0;
    animation: fadeIn 0.8s ease-out 0.9s forwards;
    transform: translateY(20px);
    margin: 0;
    opacity: 0;
    list-style: none;
}.about_this ol li {
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    overflow-y: auto;
    line-height: 1.8;
    scrollbar-width: thin;
    padding-left: 15px;
    color: rgba(255, 255, 255, 0.9);
    max-height: 400px;
    scrollbar-color: rgb(208,154,106) rgba(255, 255, 255, 0.1);
}.about_this ol li::-webkit-scrollbar {
    width: 6px;
}.about_this ol li::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}.about_this ol li::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: rgb(208,154,106);
}.about_this ol li::before {
    top: 10px;
    content: "";
    width: 6px;
    height: 6px;
    left: 0;
    background-color: rgb(208,154,106);
    position: absolute;
    transform: rotate(45deg);
}

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

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

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

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

@media (max-width: 992px) {.about_this {
    padding: 80px 0;
}.about_this .text_cell {
    padding: 30px;
}.about_this h5 {
    margin-bottom: 10px;
    font-size: calc(19px * 0.9);
}.about_this p {
    font-size: 15px;
}.about_this ol li {
    max-height: 300px;
}
}

@media (max-width: 768px) {.about_this {
    padding: 60px 0;
}.about_this::after {
    width: 150px;
    bottom: -30px;
    height: 150px;
    right: -30px;
}.about_this .text_cell {
    padding: 25px 20px;
}.about_this h5 {
    font-size: calc(19px * 0.85);
}.about_this p b {
    font-size: 18px;
}.about_this ol li {
    line-height: 1.7;
    max-height: 250px;
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 576px) {.about_this {
    padding: 50px 0;
}.about_this .text_cell::before {
    width: 60px;
    left: 20px;
    top: -10px;
}.about_this .text_cell {
    padding: 20px 15px;
}.about_this h5 {
    font-size: calc(19px * 0.8);
    letter-spacing: 1px;
}.about_this p {
    font-size: calc(15px * 0.95);
    margin-bottom: 15px;
}.about_this ol li {
    font-size: calc(15px * 0.9);
    line-height: 1.6;
    max-height: 200px;
}}.cookie_popup_disclosure {
    background: rgb(240,224,205);
    position: fixed;
    z-index: 90;
    border-top: 2px solid rgb(226,190,154);
    width: 100%;
    bottom: 0;
}#cookieWarningNotice {
    display: none;
}#cookieWarningNotice:checked ~ .cookie_popup_disclosure {
    opacity: 0;
    visibility: hidden;
}.track_prefs {
    padding: 20px 0;
    justify-content: space-between;
    display: flex;
    align-items: center;
}.cookie_popup_disclosure h5 {
    font-size: 22px;
    margin-bottom: 6px;
}.cookie_popup_disclosure p {
    font-size: 18px;
}.visitor_privacy {
    flex-shrink: 0;
    margin-right: 10px;
}.visitor_privacy svg, .visitor_privacy svg path, .visitor_privacy img {
    width: 100px;
    height: 100px;
    fill: rgb(226,190,154);
}.visitor_confirm {
    color: rgb(226,190,154);
    min-width: 120px;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
    white-space: nowrap;
    border-bottom: 2px solid rgb(226,190,154);
    line-height: 35px;
    font-size: 24px;
    text-align: center;
}.cookie_popup_disclosure p a {
    text-decoration: none;
    color: rgb(226,190,154);
}
@media only screen and (max-width: 1200px) {.cookie_popup_disclosure {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.visitor_privacy {
    display: none;
}.track_prefs {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.cookie_popup_disclosure h5 {
    text-align: center;
}.cookie_popup_disclosure p {
    text-align: center;
}.policy_ack {
    margin-bottom: 20px;
}body .wrap-container .visitor_confirm {
    margin-left: 0;
    margin-bottom: 10px;
}}
.wrap-container .cookie_popup_disclosure {
    background: rgb(226,190,154);
    box-shadow: rgb(208,154,106,0.5) 0px 0px 10px 10px;
}.wrap-container .track_prefs {
    justify-content: space-between;
    padding: 40px 0;
}.wrap-container .visitor_confirm {
    font-size: 20px;
    color: rgb(226,190,154);
    border: none;
    margin-left: 30px;
    background: #ffffff;
    padding: 10px;
}.wrap-container .policy_ack {
    color: #ffffff;
    text-align: left;
}.wrap-container .policy_ack h5 {
    font-weight: 700;
}.wrap-container .policy_ack h5, .wrap-container .policy_ack p {
    color: #ffffff;
}.wrap-container .cookie_popup_disclosure p a {
    text-decoration: underline;
    color: rgb(208,154,106);
}.pricing_feature {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}.pricing_feature::before {
    top: 0;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgb(226,190,154,0.5), rgba(0, 0, 0, 0.5) 90%);
}.pricing_feature .container {
    padding: 0 20px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}.pricing_feature .cost_breakdown {
    position: relative;
}.pricing_feature h2 {
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}.pricing_feature h2::after {
    bottom: -15px;
    width: 80px;
    content: "";
    height: 3px;
    position: absolute;
    background: rgb(208,154,106);
    left: 50%;
    transform: translateX(-50%);
}.pricing_feature .pricing_pack {
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    line-height: 1.6;
    margin: 30px auto 50px;
}.pricing_feature .cost_schemes {
    margin: 0;
    gap: 30px;
    display: grid;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.pricing_feature .cost_schemes li {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.pricing_feature .cost_schemes li:hover {
    transform: translateY(-10px);
}.pricing_feature .fee_package {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    height: 100%;
}.pricing_feature .bundle_rate {
    box-sizing: border-box;
    border-left: 3px solid rgb(208,154,106);
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}.pricing_feature .bundle_rate::before {
    width: 100%;
    content: "";
    opacity: 0;
    background: linear-gradient(45deg, rgb(226,190,154,0.5), transparent);
    position: absolute;
    transition: opacity 0.3s ease;
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100%;
}.pricing_feature .fee_package:hover .bundle_rate::before {
    opacity: 0.15;
}.pricing_feature .bundle_rate::after {
    top: -30px;
    background: rgb(208,154,106);
    transition: transform 0.5s ease;
    z-index: -1;
    opacity: 0.1;
    width: 100px;
    right: -30px;
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 100px;
}.pricing_feature .fee_package:hover .bundle_rate::after {
    transform: scale(1.2);
}.pricing_feature .plan_details {
    height: 100%;
    z-index: 2;
    position: relative;
    flex-direction: column;
    display: flex;
}.pricing_feature .plan_details h4 {
    color: #ffffff;
    position: relative;
    display: inline-block;
    font-size: 19px;
    padding-bottom: 12px;
    margin: 0 0 20px;
    font-weight: 600;
}.pricing_feature .plan_details h4::after {
    background: rgb(208,154,106);
    height: 2px;
    width: 40px;
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
}.pricing_feature .fee_package:hover .plan_details h4::after {
    width: 60px;
}.pricing_feature .plan_details p {
    word-wrap: break-word;
    opacity: 0.85;
    line-height: 1.5;
    word-break: break-word;
    font-size: calc(14px - 2px);
    overflow-wrap: break-word;
    color: #ffffff;
    margin: 0 0 25px;
    flex-grow: 1;
}.pricing_feature .package_deal {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: calc(19px + 4px);
    position: relative;
    padding: 15px 0 0;
    font-weight: 700;
    display: block;
    color: #ffffff;
}.pricing_feature .package_deal::before {
    width: 30%;
    height: 1px;
    content: "";
    left: 0;
    top: -1px;
    position: absolute;
    background: rgb(208,154,106);
}

@media (min-width: 992px) {.pricing_feature .cost_schemes {
    grid-template-columns: repeat(4, 1fr);
}.pricing_feature .bundle_rate {
    padding: 35px 25px;
}.pricing_feature h2 {
    font-size: calc(28px + 4px);
}
}

@media (min-width: 768px) and (max-width: 991px) {.pricing_feature .cost_schemes {
    grid-template-columns: repeat(2, 1fr);
}.pricing_feature {
    padding: 100px 0;
}
}

@media (max-width: 767px) {.pricing_feature {
    padding: 80px 0;
}.pricing_feature .cost_schemes {
    grid-template-columns: 1fr;
}.pricing_feature h2 {
    font-size: calc(28px - 2px);
}.pricing_feature .pricing_pack {
    margin-bottom: 30px;
    font-size: calc(14px - 1px);
}.pricing_feature .plan_details p {
    font-size: calc(14px - 3px);
    overflow-y: auto;
    max-height: 300px;
    padding-right: 10px;
}.pricing_feature .plan_details p::-webkit-scrollbar {
    width: 3px;
}.pricing_feature .plan_details p::-webkit-scrollbar-thumb {
    background: rgb(208,154,106);
}
}

@media (max-width: 480px) {.pricing_feature .bundle_rate {
    padding: 30px 20px;
}.pricing_feature h2 {
    font-size: calc(28px - 4px);
}.pricing_feature .package_deal {
    font-size: calc(19px + 2px);
}}.instructional_approach {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(240,224,205) 0%, rgba(rgb(208,154,106,0.5), 0.1) 100%);
    z-index: 1;
}.instructional_approach::before {
    height: 120%;
    position: absolute;
    width: 120%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(rgb(208,154,106,0.5), 0.03) 0px,
            rgba(rgb(208,154,106,0.5), 0.03) 1px,
            transparent 1px,
            transparent 10px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(rgb(226,190,154,0.5), 0.02) 0px,
            rgba(rgb(226,190,154,0.5), 0.02) 1px,
            transparent 1px,
            transparent 15px
        );
    transform: rotate(-3deg) scale(1.05);
    content: "";
    top: -10%;
    pointer-events: none;
    left: -5%;
    z-index: -1;
}.instructional_approach::after {
    content: "";
    transform: skewY(-2deg);
    height: 60%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgb(240,224,205) 90%);
    position: absolute;
    left: 0;
    transform-origin: bottom;
    bottom: 0;
}.instructional_approach .ethos_block {
    padding: 0 2rem;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 1200px;
    transform: translateZ(0);
    position: relative;
    gap: 3rem;
    display: grid;
}.instructional_approach h2 {
    color: #000000;
    line-height: 1.3;
    position: relative;
    transform: translateX(-5px);
    z-index: 2;
    padding-bottom: 1.5rem;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 1.5rem;
}.instructional_approach h2::before {
    transform: scaleX(1);
    transform-origin: left;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 4px;
    width: 120px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(90deg, rgb(208,154,106), transparent);
}.instructional_approach:hover h2::before {
    transform: scaleX(1.5);
}.instructional_approach .text_cell {
    border-left: 5px solid rgb(208,154,106);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateY(1deg) translateZ(0);
    padding: 2.5rem 3rem;
    z-index: 2;
    position: relative;
    box-shadow: 
        0 10px 30px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
        0 1px 5px rgba(rgba(0, 0, 0, 0.5), 0.05);
    background: linear-gradient(135deg, rgba(rgb(255, 255, 255, 0.5), 0.8), rgba(rgb(255, 255, 255, 0.5), 0.4));
}.instructional_approach .text_cell::before {
    mask-size: 20px 20px;
    mask-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    mask-image: linear-gradient(45deg, #000 25%, transparent 25%), 
                linear-gradient(-45deg, #000 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #000 75%),
                linear-gradient(-45deg, transparent 75%, #000 75%);
    background: linear-gradient(
        135deg,
        rgba(rgb(208,154,106,0.5), 0.08) 0%,
        rgba(rgb(226,190,154,0.5), 0.05) 100%
    );
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    opacity: 0.4;
    top: 0;
    position: absolute;
    left: 0;
}.instructional_approach .text_cell:hover {
    box-shadow: 
        0 20px 40px -20px rgba(rgba(0, 0, 0, 0.5), 0.2),
        0 2px 10px rgba(rgba(0, 0, 0, 0.5), 0.08);
    transform: perspective(1000px) rotateY(-1deg) translateZ(0) translateY(-5px);
}.instructional_approach p {
    line-height: 1.75;
    transition: opacity 0.3s ease;
    position: relative;
    font-weight: 400;
    margin: 0;
    opacity: 0.92;
    font-size: 15px;
    color: #000000;
}.instructional_approach .text_cell:hover p {
    opacity: 1;
}.instructional_approach .text_cell p::first-letter {
    font-size: calc(15px * 1.5);
    margin-right: 2px;
    color: rgb(208,154,106);
    font-weight: 600;
}

@media (min-width: 768px) {.instructional_approach .ethos_block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}.instructional_approach h2 {
    transform: translateX(-10px);
    margin-bottom: 0;
    padding-bottom: 2rem;
    font-size: calc(38px * 1.2);
}.instructional_approach h2::before {
    height: 5px;
    width: 180px;
}.instructional_approach .text_cell {
    transform: perspective(1000px) rotateY(2deg) translateZ(0) translateX(20px);
}.instructional_approach .text_cell:hover {
    transform: perspective(1000px) rotateY(-1deg) translateZ(0) translateX(15px) translateY(-5px);
}
}

@media (min-width: 992px) {.instructional_approach {
    padding: 8rem 0;
}.instructional_approach .ethos_block {
    gap: 6rem;
}.instructional_approach h2 {
    transform: translateX(-15px);
    font-size: calc(38px * 1.4);
}.instructional_approach .text_cell {
    border-left-width: 8px;
    padding: 3.5rem 4rem;
}.instructional_approach p {
    font-size: calc(15px * 1.05);
    line-height: 1.8;
}
}

@media (max-width: 767px) {.instructional_approach {
    padding: 4rem 0;
}.instructional_approach .ethos_block {
    padding: 0 1.5rem;
    gap: 2rem;
}.instructional_approach h2 {
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    text-align: center;
    font-size: calc(38px * 0.9);
    transform: translateX(0);
}.instructional_approach h2::before {
    left: 50%;
    transform: translateX(-50%) scaleX(1);
    width: 100px;
}.instructional_approach:hover h2::before {
    transform: translateX(-50%) scaleX(1.3);
}.instructional_approach .text_cell {
    padding: 2rem;
}.instructional_approach p {
    font-size: calc(15px * 0.95);
    line-height: 1.7;
}}.privacy_widget {
    overflow: hidden;
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgb(240,224,205) 0%, rgba(245, 245, 250, 0.95) 100%);
    position: relative;
}.privacy_widget::before {
    z-index: 1;
    position: absolute;
    background: linear-gradient(90deg, rgb(226,190,154) 0%, rgb(208,154,106) 100%);
    height: 8px;
    right: 0;
    content: "";
    top: 0;
    left: 0;
}.privacy_widget::after {
    background-size: 20px 20px;
    height: 100%;
    top: 0;
    content: "";
    left: 0;
    z-index: -1;
    position: absolute;
    width: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}.privacy_widget .container {
    position: relative;
    transform: translateZ(0);
    margin: 0 auto;
    max-width: 1140px;
    z-index: 2;
}.privacy_widget h1 {
    position: relative;
    transform-style: preserve-3d;
    font-size: calc(45px * 1.2);
    color: rgb(226,190,154);
    font-weight: 700;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    transform: perspective(1000px) translateZ(10px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.privacy_widget h1::after {
    height: 4px;
    position: absolute;
    bottom: 0;
    transform-origin: left;
    content: "";
    transition: width 0.4s ease-out;
    background: linear-gradient(90deg, rgb(226,190,154), rgb(208,154,106,0.5));
    left: 0;
    width: 80px;
}.privacy_widget h1:hover::after {
    width: 120px;
}.privacy_widget h2 {
    position: relative;
    transform: translateX(0);
    font-weight: 600;
    transition: transform 0.35s ease-out;
    padding-left: 1.2rem;
    color: rgb(208,154,106);
    margin: 3rem 0 1.5rem;
    font-size: 37px;
}.privacy_widget h2::before {
    background: rgb(226,190,154,0.5);
    position: absolute;
    content: "";
    height: 85%;
    transform: translateY(-50%);
    width: 8px;
    top: 50%;
    left: 0;
}.privacy_widget h2:hover {
    transform: translateX(5px);
}.privacy_widget h3 {
    position: relative;
    color: #000000;
    margin: 2.5rem 0 1.2rem;
    font-size: calc(37px * 0.85);
    padding-left: 1rem;
    font-weight: 600;
}.privacy_widget h3::before {
    transform: translateY(-50%);
    content: "";
    height: 70%;
    width: 6px;
    left: 0;
    background: rgb(208,154,106,0.5);
    top: 50%;
    position: absolute;
}.privacy_widget h4 {
    font-size: calc(20px * 1.1);
    margin: 2rem 0 1rem;
    position: relative;
    color: #000000;
    padding-left: 0.8rem;
    font-weight: 600;
}.privacy_widget h4::before {
    position: absolute;
    top: 50%;
    content: "";
    left: 0;
    background: rgb(208,154,106,0.5);
    transform: translateY(-50%);
    height: 60%;
    width: 4px;
}.privacy_widget p {
    color: #000000;
    position: relative;
    transform: translateZ(0);
    transition: transform 0.35s ease;
    font-size: 14px;
    padding: 0.5rem 0;
    max-width: 90%;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}.privacy_widget p strong {
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    color: #000000;
}.privacy_widget p strong::after {
    content: "";
    position: absolute;
    height: 1px;
    transform-origin: right;
    bottom: 0;
    background: rgb(226,190,154,0.5);
    transform: scaleX(0);
    transition: transform 0.35s ease-out;
    width: 100%;
    left: 0;
}.privacy_widget p:hover strong::after {
    transform-origin: left;
    transform: scaleX(1);
}.privacy_widget ul {
    position: relative;
    list-style: none;
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem;
}.privacy_widget ul::before {
    position: absolute;
    content: "";
    background: linear-gradient(to bottom, rgb(226,190,154,0.5), transparent);
    width: 2px;
    left: 0;
    height: 100%;
    top: 0;
}.privacy_widget li {
    padding: 0.8rem 0 0.8rem 2rem;
    font-size: calc(14px * 0.97);
    position: relative;
    color: #000000;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    line-height: 1.7;
}.privacy_widget li::before {
    content: "";
    opacity: 0.8;
    border: 2px solid rgb(226,190,154);
    top: 1.2rem;
    height: 10px;
    transform: rotate(45deg);
    left: 0;
    width: 10px;
    transition: all 0.3s ease;
    position: absolute;
}.privacy_widget li:hover {
    transform: translateX(5px);
}.privacy_widget li:hover::before {
    transform: rotate(225deg);
    background-color: rgb(226,190,154,0.5);
}.privacy_widget span {
    border-left: 3px solid rgb(208,154,106);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    font-size: calc(14px * 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 1.5rem;
    transform: translateZ(0);
    line-height: 1.75;
    color: #000000;
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
}.privacy_widget span:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 992px) {.privacy_widget {
    padding: 7rem 3rem;
}.privacy_widget h1 {
    margin-bottom: 3rem;
    font-size: calc(45px * 1.3);
}.privacy_widget p {
    max-width: 80%;
}.privacy_widget h2 {
    padding-left: 1.5rem;
}.privacy_widget h2::before {
    width: 10px;
}.privacy_widget span {
    max-width: calc(100% - 6rem);
    margin-left: 3rem;
}
}

@media (max-width: 991px) {.privacy_widget h1 {
    font-size: calc(45px * 1.1);
}.privacy_widget h2 {
    font-size: calc(37px * 0.95);
}.privacy_widget p, .privacy_widget span {
    max-width: 100%;
}
}

@media (max-width: 767px) {.privacy_widget {
    padding: 4rem 1.5rem;
}.privacy_widget h1 {
    margin-bottom: 2rem;
    font-size: 45px;
}.privacy_widget h2 {
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
}.privacy_widget h3, .privacy_widget h4 {
    padding-left: 0.7rem;
}.privacy_widget ul {
    padding-left: 0.5rem;
}.privacy_widget li {
    padding: 0.7rem 0 0.7rem 1.8rem;
}.privacy_widget li::before {
    height: 8px;
    width: 8px;
}.privacy_widget span {
    margin-bottom: 1.2rem;
    padding: 0.8rem 1.2rem;
}
}

@media (max-width: 480px) {.privacy_widget {
    padding: 3rem 1rem;
}.privacy_widget h1 {
    font-size: calc(45px * 0.9);
}.privacy_widget h2 {
    font-size: calc(37px * 0.9);
}.privacy_widget h3 {
    font-size: calc(20px * 1.1);
}.privacy_widget h4 {
    font-size: 20px;
}.privacy_widget p, .privacy_widget li, .privacy_widget span {
    font-size: calc(14px * 0.95);
    line-height: 1.6;
}}header {
    background: linear-gradient(to right, rgb(240,224,205), #ffffff);
    position: relative;
    padding: 1.5rem 0;
    box-shadow: 0 5px 15px rgb(226,190,154,0.5);
    z-index: 100;
}header .container {
    padding: 0 1.5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}header .main_site {
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}header .head_base {
    display: block;
    border-radius: 10px;
    position: relative;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
}header .head_base::after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: -5px;
    height: 2px;
    left: 0;
    opacity: 0.7;
    background: linear-gradient(to right, transparent, rgb(226,190,154), transparent);
}header .head_base svg {
    height: auto;
    width: 180px;
    transition: transform 0.3s ease;
}header .head_base:hover svg {
    transform: scale(1.05);
}header .site_header {
    justify-content: center;
    padding: 0.8rem;
    gap: 0.5rem;
    background: linear-gradient(to right, rgb(226,190,154,0.5), rgb(208,154,106,0.5));
    display: flex;
    border-radius: 16px;
    width: 100%;
    flex-wrap: wrap;
}header .site_top {
    font-size: 13px;
    background: #ffffff;
    font-weight: 400;
    transition: all 0.3s ease;
    color: #000000;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}header .site_top:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgb(226,190,154), rgb(208,154,106));
    box-shadow: 0 4px 8px rgb(226,190,154,0.5);
}

@media (max-width: 991px) {header {
    padding: 1.2rem 0;
}header .head_base svg {
    width: 160px;
}header .site_header {
    padding: 0.7rem;
}header .site_top {
    font-size: calc(13px - 1px);
    padding: 0.5rem 1rem;
}
}

@media (max-width: 767px) {header {
    padding: 1rem 0;
}header .main_site {
    gap: 1rem;
}header .head_base svg {
    width: 140px;
}header .site_header {
    gap: 0.4rem;
    padding: 0.6rem;
}header .site_top {
    padding: 0.4rem 0.8rem;
    font-size: calc(13px - 2px);
}
}

@media (max-width: 480px) {header {
    padding: 0.8rem 0;
}header .main_site {
    gap: 0.8rem;
}header .head_base svg {
    width: 120px;
}header .site_header {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.5rem;
}header .site_header::-webkit-scrollbar {
    height: 3px;
}header .site_header::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(226,190,154);
}header .site_top {
    padding: 0.4rem 0.7rem;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: calc(13px - 2px);
}}.id_thankbox {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(226,190,154,0.5) 0%, rgb(240,224,205) 100%);
    padding: 120px 0 80px;
}.id_thankbox::before {
    animation: pulse 15s infinite alternate ease-in-out;
    background: radial-gradient(circle at 70% 30%, rgb(208,154,106,0.5) 0%, transparent 60%);
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.7;
    width: 100%;
    content: "";
    z-index: 1;
}.id_thankbox::after {
    bottom: -50px;
    opacity: 0.2;
    content: "";
    filter: blur(40px);
    position: absolute;
    z-index: 0;
    height: 300px;
    background: linear-gradient(225deg, rgb(226,190,154) 0%, transparent 70%);
    right: -50px;
    width: 300px;
}.id_thankbox .container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}.id_thankbox .ethos_block {
    background: #ffffff;
    padding: 60px 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    flex-direction: column;
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    display: flex;
}.id_thankbox .ethos_block::before {
    width: 5px;
    content: "";
    left: 0;
    background: linear-gradient(to bottom, rgb(226,190,154), rgb(208,154,106));
    height: 100%;
    transform: scaleY(1.02);
    position: absolute;
    top: 0;
}.id_thankbox .ethos_block::after {
    animation: float 8s infinite ease-in-out;
    height: 80px;
    top: -15px;
    background: rgb(208,154,106,0.5);
    z-index: -1;
    content: "";
    position: absolute;
    width: 80px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    right: 40px;
    transform: rotate(15deg);
}.id_thankbox .ethos_block:hover {
    transform: perspective(1000px) rotateY(0deg);
}.id_thankbox h5 {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    line-height: 1.4;
    padding-bottom: 20px;
    color: #000000;
    margin-bottom: 30px;
}.id_thankbox h5::after {
    content: "";
    height: 3px;
    background: linear-gradient(90deg, rgb(226,190,154), rgb(208,154,106));
    position: absolute;
    bottom: 0;
    transition: width 0.3s ease;
    left: 0;
    width: 80px;
}.id_thankbox .ethos_block:hover h5::after {
    width: 120px;
}.id_thankbox p {
    z-index: 2;
    position: relative;
    line-height: 1.8;
    transition: color 0.3s ease;
    color: #000000;
    margin-bottom: 0;
    font-size: 13px;
}.id_thankbox a {
    display: block;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    overflow: hidden;
}.id_thankbox a::before {
    transform: scaleX(0);
    content: "";
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    height: 1px;
    background: linear-gradient(90deg, rgb(226,190,154,0.5), transparent);
    transform-origin: left;
    left: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
}.id_thankbox a:hover::before {
    transform: scaleX(1);
}.id_thankbox a:hover p {
    color: rgb(226,190,154);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

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

@media (min-width: 768px) {.id_thankbox {
    padding: 140px 0 100px;
}.id_thankbox .ethos_block {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}.id_thankbox h5 {
    font-size: calc(18px * 1.2);
    margin-bottom: 40px;
    padding-bottom: 25px;
}.id_thankbox p {
    font-size: calc(13px * 1.05);
    line-height: 1.9;
}.id_thankbox .ethos_block::after {
    height: 100px;
    right: 60px;
    width: 100px;
}
}

@media (min-width: 992px) {.id_thankbox {
    padding: 160px 0 120px;
}.id_thankbox .ethos_block {
    max-width: 1000px;
    margin: 0 auto;
    transform: perspective(1200px) rotateY(-3deg);
    padding: 100px 80px;
}.id_thankbox .ethos_block::before {
    width: 8px;
}.id_thankbox h5 {
    max-width: 80%;
    font-size: calc(18px * 1.3);
}.id_thankbox p {
    max-width: 90%;
}.id_thankbox .ethos_block::after {
    height: 120px;
    width: 120px;
    top: -20px;
    right: 80px;
}
}

@media (max-width: 767px) {.id_thankbox {
    padding: 80px 0 60px;
}.id_thankbox .ethos_block {
    transform: perspective(800px) rotateY(-1deg);
    padding: 40px 25px;
}.id_thankbox h5 {
    font-size: calc(18px * 0.9);
    margin-bottom: 25px;
    padding-bottom: 15px;
}.id_thankbox p {
    line-height: 1.7;
    font-size: calc(13px * 0.95);
}.id_thankbox .ethos_block::before {
    width: 3px;
}.id_thankbox .ethos_block::after {
    height: 60px;
    width: 60px;
    right: 20px;
    top: -10px;
}
}

@media (max-width: 480px) {.id_thankbox {
    padding: 60px 0 40px;
}.id_thankbox .ethos_block {
    padding: 30px 20px;
    transform: none;
}.id_thankbox h5 {
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: calc(18px * 0.85);
}.id_thankbox .ethos_block::after {
    display: none;
}}footer {
    z-index: 1;
    position: relative;
}footer::before {
    bottom: 0;
    content: "";
    z-index: -2;
    top: 0;
    right: 0;
    opacity: 0.9;
    background: linear-gradient(145deg, rgb(240,224,205) 0%, rgb(226,190,154,0.5) 100%);
    left: 0;
    position: absolute;
}footer::after {
    background-image: 
        repeating-linear-gradient(0deg, rgb(226,190,154,0.5), rgb(226,190,154,0.5) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgb(226,190,154,0.5), rgb(226,190,154,0.5) 1px, transparent 1px, transparent 20px);
    right: 0;
    z-index: -1;
    bottom: 0;
    top: 0;
    left: 0;
    opacity: 0.1;
    content: "";
    position: absolute;
}.mobile_cta {
    position: relative;
    color: #000000;
    padding: 4rem 0 2rem;
}.mobile_cta::after {
    content: "";
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, rgb(226,190,154), rgb(208,154,106));
    width: 100%;
    position: absolute;
    top: 0;
}.mobile_cta .container {
    gap: 3rem;
    flex-wrap: wrap;
    display: flex;
    position: relative;
}.mobile_cta .company_holder {
    flex: 1 1 400px;
    border-radius: 13px;
    position: relative;
    background: #ffffff;
    padding: 2rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.mobile_cta .company_holder::before {
    height: 5px;
    border-top-right-radius: 13px;
    position: absolute;
    left: 0;
    background: rgb(226,190,154);
    top: 0;
    border-top-left-radius: 13px;
    width: 100%;
    content: "";
}.mobile_cta .company_holder h3 {
    font-size: 36px;
    position: relative;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: rgb(226,190,154);
    letter-spacing: 0.5px;
}.mobile_cta .company_holder h3::after {
    position: absolute;
    content: "";
    height: 3px;
    bottom: -0.5rem;
    width: 80px;
    left: 0;
    background: rgb(208,154,106);
}.mobile_cta .footer_careers {
    border-radius: 10px;
    background: rgb(240,224,205);
    padding: 1.5rem;
    position: relative;
    line-height: 1.7;
    color: #000000;
    font-size: 15px;
    border-left: 3px solid rgb(208,154,106);
}.mobile_cta .scholar_cta {
    min-width: 400px;
    flex: 1 1 calc(100% - 450px);
}.mobile_cta .nav_lesson {
    flex-wrap: wrap;
    gap: 2.5rem;
    display: flex;
}.mobile_cta .site_header {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 1.25rem);
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    min-width: 200px;
    background: #ffffff;
}.mobile_cta .site_header h5 {
    color: #ffffff;
    position: relative;
    font-weight: 600;
    margin: 0;
    font-size: 23px;
    background: rgb(208,154,106);
    padding: 1rem 1.5rem;
}.mobile_cta .site_header .nav_lesson {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}.mobile_cta .site_header .nav_lesson a {
    display: flex;
    font-size: 15px;
    color: #000000;
    text-decoration: none;
    align-items: center;
    position: relative;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}.mobile_cta .site_header .nav_lesson a::before {
    height: 100%;
    top: 0;
    position: absolute;
    transition: all 0.3s ease;
    z-index: -1;
    background: rgb(240,224,205);
    content: "";
    width: 0;
    left: 0;
}.mobile_cta .site_header .nav_lesson a::after {
    transform: translateY(-50%);
    opacity: 0;
    height: 5px;
    position: absolute;
    transition: all 0.3s ease;
    width: 5px;
    top: 50%;
    left: 1.5rem;
    content: "";
    background: rgb(208,154,106);
    border-radius: 50%;
}.mobile_cta .site_header .nav_lesson a:hover {
    color: rgb(226,190,154);
    padding-left: 2.2rem;
}.mobile_cta .site_header .nav_lesson a:hover::before {
    width: 100%;
}.mobile_cta .site_header .nav_lesson a:hover::after {
    opacity: 1;
}.job_board {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    margin-top: 3rem;
    position: relative;
    background: rgb(240,224,205);
}.job_board::before {
    right: 10%;
    content: "";
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(226,190,154,0.5), transparent);
    left: 10%;
    top: 0;
}.job_board .container {
    justify-content: center;
    align-items: center;
    display: flex;
}.job_board .app_store {
    background: #ffffff;
    padding: 0.8rem 2rem;
    color: #000000;
    font-size: 12px;
    border-radius: 50px;
    text-align: center;
    font-weight: 400;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px) {.mobile_cta .container {
    gap: 2rem;
}.mobile_cta .company_holder {
    flex: 1 1 360px;
}.mobile_cta .scholar_cta {
    min-width: 360px;
    flex: 1 1 calc(100% - 400px);
}.mobile_cta .nav_lesson {
    gap: 2rem;
}
}

@media (max-width: 992px) {.mobile_cta {
    padding: 3.5rem 0 2rem;
}.mobile_cta .container {
    flex-direction: column;
    gap: 2.5rem;
}.mobile_cta .company_holder,
    .mobile_cta .scholar_cta {
    min-width: 100%;
    flex: 1 1 100%;
}.mobile_cta .site_header {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
}
}

@media (max-width: 768px) {.mobile_cta {
    padding: 3rem 0 1.5rem;
}.mobile_cta .nav_lesson {
    gap: 1.5rem;
}.mobile_cta .company_holder {
    padding: 2rem;
}.mobile_cta .company_holder h3 {
    font-size: calc(36px - 2px);
}.job_board {
    margin-top: 2rem;
}
}

@media (max-width: 576px) {.mobile_cta {
    padding: 2.5rem 0 1rem;
}.mobile_cta .container {
    gap: 1.5rem;
}.mobile_cta .site_header {
    min-width: 100%;
    flex: 1 1 100%;
}.mobile_cta .nav_lesson {
    gap: 1rem;
}.mobile_cta .company_holder {
    padding: 1.5rem;
}.mobile_cta .footer_careers {
    padding: 1.2rem;
}.job_board {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
}
}

@media (max-width: 420px) {.mobile_cta .company_holder h3::after {
    width: 50px;
}.mobile_cta .site_header .nav_lesson a:hover {
    padding-left: 2rem;
}.job_board .app_store {
    padding: 0.7rem 1.5rem;
    width: 90%;
}}.contact_panel {
    z-index: 1;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}.contact_panel::before {
    z-index: -1;
    opacity: 0.95;
    background-color: rgb(226,190,154);
    content: '';
    inset: 0;
    position: absolute;
}.contact_panel .container {
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    max-width: 1280px;
}.contact_panel .connect_map {
    display: flex;
    position: relative;
    flex-direction: column;
}.contact_panel .contact_inquiry {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
    position: relative;
}.contact_panel .contact_inquiry h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 37px;
    display: inline-block;
    font-weight: 700;
    position: relative;
}.contact_panel .contact_inquiry h3::after {
    height: 2px;
    content: '';
    bottom: -10px;
    left: 0;
    position: absolute;
    width: 100%;
    background: rgb(208,154,106);
}.contact_panel .contact_inquiry div {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    display: inline-block;
    margin: 15px 10px;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}.contact_panel .contact_inquiry div:hover {
    transform: translateY(-5px);
    background-color: rgb(208,154,106);
}.contact_panel .contact_inquiry div svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}.contact_panel .contact_inquiry div svg path {
    fill: #ffffff;
}.contact_panel .contact_inquiry div span {
    color: #ffffff;
    vertical-align: middle;
    display: inline-block;
    font-size: 12px;
}.contact_panel .contact_inquiry div span a {
    text-decoration: none;
    color: #ffffff;
}.contact_panel .query_map {
    position: relative;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    background-color: #ffffff;
    border-radius: 27px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: grid;
}.contact_panel .query_map h3 {
    font-weight: 700;
    font-size: 23px;
    color: #000000;
    grid-column: span 3;
    margin-bottom: 20px;
    text-align: center;
}.contact_panel .query_map form {
    grid-column: span 3;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}.contact_panel .query_map input#name {
    grid-column: span 1;
}.contact_panel .query_map input#phone {
    grid-column: span 1;
}.contact_panel .query_map input#email {
    grid-column: span 1;
}.contact_panel .query_map input[type="text"],
.contact_panel .query_map input[type="email"] {
    transition: box-shadow 0.3s ease;
    height: 55px;
    background-color: rgb(240,224,205);
    width: 100%;
    color: #000000;
    border-radius: 10px;
    font-size: 12px;
    padding: 0 20px;
    border: none;
}.contact_panel .query_map input[type="text"]:focus,
.contact_panel .query_map input[type="email"]:focus {
    box-shadow: 0 0 0 2px rgb(208,154,106);
    outline: none;
}.contact_panel .query_map input::placeholder {
    color: #000000;
    opacity: 0.6;
}.contact_panel .query_map .help_info {
    grid-column: span 2;
    display: flex;
    align-items: center;
}.contact_panel .query_map .help_info input[type="checkbox"] {
    height: 20px;
    border: 2px solid rgb(240,224,205);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    appearance: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: 20px;
    -webkit-appearance: none;
    margin-right: 10px;
}.contact_panel .query_map .help_info input[type="checkbox"]:checked {
    border-color: rgb(208,154,106);
    background-color: rgb(208,154,106);
}.contact_panel .query_map .help_info input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    color: #ffffff;
    transform: translate(-50%, -50%);
    top: 50%;
    font-size: 12px;
    left: 50%;
}.contact_panel .query_map .help_info label {
    color: #000000;
    line-height: 1.5;
    font-size: 13px;
}.contact_panel .query_map .help_info label a {
    color: rgb(208,154,106);
    text-decoration: none;
    transition: color 0.3s ease;
}.contact_panel .query_map .help_info label a:hover {
    color: rgb(226,190,154);
}.contact_panel .query_map .help_inquiry {
    border-radius: 10px;
    background-color: rgb(208,154,106);
    border: none;
    color: #ffffff;
    grid-column: span 1;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 19px;
    height: 55px;
    cursor: pointer;
}.contact_panel .query_map .help_inquiry:hover {
    transform: translateY(-3px);
    background-color: rgb(226,190,154);
}

@media screen and (min-width: 992px) {.contact_panel .connect_map {
    flex-direction: row;
    gap: 50px;
    align-items: center;
}.contact_panel .contact_inquiry {
    text-align: left;
    width: 30%;
    margin-bottom: 0;
}.contact_panel .contact_inquiry h3 {
    margin-bottom: 30px;
}.contact_panel .contact_inquiry h3::after {
    width: 50%;
}.contact_panel .contact_inquiry div {
    text-align: left;
    margin: 15px 0;
    display: block;
}.contact_panel .query_map {
    width: 70%;
}
}

@media screen and (max-width: 991px) {.contact_panel .query_map input#name,
    .contact_panel .query_map input#phone,
    .contact_panel .query_map input#email {
    grid-column: span 3;
}.contact_panel .query_map .help_info {
    grid-column: span 3;
}.contact_panel .query_map .help_inquiry {
    grid-column: span 3;
}
}

@media screen and (max-width: 767px) {.contact_panel {
    padding: 60px 0;
}.contact_panel .contact_inquiry {
    margin-bottom: 30px;
}.contact_panel .contact_inquiry h3 {
    font-size: calc(23px + 2px);
}.contact_panel .query_map {
    padding: 30px 20px;
}.contact_panel .query_map form {
    gap: 15px;
}
}

@media screen and (max-width: 480px) {.contact_panel {
    padding: 40px 0;
}.contact_panel .contact_inquiry div {
    display: block;
    text-align: left;
    width: 100%;
    margin: 10px 0;
}
}