* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}header,footer {
    width: 100%;
}.conduct_code {
    flex: 0 0 auto;
}.nav_know {
    flex: 1 0 auto;
}.container {
    width: 1170px;
    max-width: 100%;
    margin: auto;
}a {
    color: inherit;
    text-decoration: none;
}svg {
    height: 30px;
    width: 30px;
}html,body {
    height: 100%;
    color: #000000;
    min-height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: auto;
}.wrap-container {
    min-height: 100%;
    height: 100%;
    flex-direction: column;
    display: flex;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.homepage {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
}.homepage .start_entry {
    justify-content: flex-start;
    top: 0;
    left: 0;
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    align-items: center;
}.homepage .start_entry::before {
    z-index: 1;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    background: linear-gradient(
    135deg,
    rgb(231,200,155,0.5) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgb(217,168,109,0.5) 100%
  );
    content: "";
    backdrop-filter: blur(5px);
    position: absolute;
}.homepage .start_entry::after {
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0.7;
    position: absolute;
    content: "";
    z-index: 2;
    background: 
    linear-gradient(90deg, transparent 0%, rgb(217,168,109,0.5) 100%),
    radial-gradient(circle at 75% 25%, rgb(231,200,155,0.5) 0%, transparent 50%);
    left: 0;
}.homepage .master_track {
    background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
    z-index: 10;
    animation: titlePageReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    padding: 5% 8%;
    max-width: 85%;
    box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: perspective(1000px) rotateY(-2deg);
    transform-origin: left center;
    position: relative;
    backdrop-filter: blur(8px);
    margin-left: 5%;
    clip-path: polygon(0 0, 100% 5%, 98% 95%, 0% 100%);
}.homepage .master_track::before {
    position: absolute;
    transform: skewX(-20deg);
    animation: slideIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    width: 40%;
    background: rgb(231,200,155);
    animation-delay: 0.5s;
    content: "";
    opacity: 0;
    top: -10px;
    height: 10px;
    left: -10px;
}.homepage .master_track::after {
    right: -10px;
    width: 40%;
    animation-delay: 0.7s;
    position: absolute;
    bottom: -10px;
    animation: slideIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: rgb(217,168,109);
    opacity: 0;
    height: 10px;
    content: "";
    transform: skewX(-20deg);
}.homepage h1 {
    opacity: 0;
    animation-delay: 0.3s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    -webkit-background-clip: text !important;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff 0%, rgb(217,168,109) 100%);
    transform: translateX(-20px);
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    animation: slideTextIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    line-height: 1.1;
    font-size: clamp(2.5rem, 5vw, 42px);
    color: #ffffff;
    position: relative;
}.homepage h1::after {
    animation: expandLine 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    left: 0;
    opacity: 0;
    content: "";
    position: absolute;
    bottom: -15px;
    height: 5px;
    background: linear-gradient(90deg, rgb(231,200,155) 0%, rgb(217,168,109) 100%);
    transform-origin: left center;
    animation-delay: 0.8s;
    width: 80px;
}.homepage h3 {
    transform: translateX(-20px);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    animation-delay: 0.5s;
    opacity: 0;
    animation: slideTextIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    position: relative;
    opacity: 0.9;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    max-width: 90%;
    margin-bottom: 1.5rem;
}.homepage p {
    position: relative;
    border-left: 3px solid rgb(231,200,155);
    font-size: clamp(1rem, 1.5vw, 13px);
    animation-delay: 0.7s;
    line-height: 1.6;
    padding-left: 1rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    opacity: 0;
    margin-top: 2rem;
    animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform: translateY(20px);
}

@keyframes titlePageReveal {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateY(-10deg) translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateY(-2deg) translateX(0);
  }
}

@keyframes slideIn {
  0% {
    transform: skewX(-20deg) translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: skewX(-20deg) translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextIn {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

@media (max-width: 991px) {.homepage .master_track {
    max-width: 90%;
    padding: 6% 6%;
    clip-path: polygon(0 0, 100% 3%, 98% 97%, 0% 100%);
    margin-left: 5%;
    transform: perspective(1000px) rotateY(-1deg);
}.homepage h1::after {
    width: 60px;
}.homepage h3 {
    max-width: 100%;
}
}

@media (max-width: 767px) {.homepage .start_entry {
    justify-content: center;
}.homepage .master_track {
    padding: 8% 7%;
    transform: none;
    margin: 0 auto;
    max-width: 92%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}.homepage h1 {
    letter-spacing: -0.01em;
}.homepage h3 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
}.homepage p {
    padding-left: 0.75rem;
    font-size: 1rem;
}
}

@media (max-width: 480px) {.homepage .master_track {
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.05) 100%
    );
    padding: 10% 8%;
}.homepage h1 {
    font-size: 2rem;
}.homepage .start_entry::before {
    background: linear-gradient(
      135deg,
      rgb(231,200,155,0.5) 0%,
      rgba(0, 0, 0, 0.75) 50%,
      rgb(217,168,109,0.5) 100%
    );
}}.training_specialist {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(231,200,155,0.5), rgb(244,229,201));
    overflow: hidden;
}.training_specialist::before {
    width: 100%;
    content: "";
    z-index: 1;
    top: 0;
    position: absolute;
    pointer-events: none;
    left: 0;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgb(255, 255, 255, 0.5), transparent 70%);
}.training_specialist::after {
    border-radius: 50% 60% 70% 40%;
    bottom: -10%;
    position: absolute;
    right: -5%;
    height: 40%;
    filter: blur(40px);
    opacity: 0.05;
    content: "";
    width: 40%;
    background: rgb(231,200,155);
    z-index: 0;
}.training_specialist .container {
    padding: 0 15px;
    max-width: 1140px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}.training_specialist .student_glow {
    gap: 2rem;
    backdrop-filter: blur(10px) saturate(180%);
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 3rem;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    display: grid;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    grid-template-columns: 1fr;
}.training_specialist .student_glow:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg);
}.training_specialist .student_glow > div:first-child {
    position: relative;
    order: 1;
}.training_specialist .student_glow > div:nth-child(2) {
    position: relative;
    order: 2;
}.training_specialist .student_glow > div:last-child {
    position: relative;
    order: 3;
}.training_specialist .img_hover_effect {
    height: 300px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), clip-path 0.5s ease;
    clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
    position: relative;
}.training_specialist .student_glow:hover .img_hover_effect {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(-5px) scale(1.02);
}.training_specialist .img_hover_effect::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 50%);
    content: "";
}.training_specialist .name {
    transform: translateX(0);
    color: rgb(231,200,155);
    margin: 0 0 0.5rem;
    font-size: 22px;
    position: relative;
    font-weight: 700;
    transition: transform 0.4s ease-out;
}.training_specialist .name::before {
    content: "";
    position: absolute;
    width: 0;
    top: 50%;
    height: 2px;
    background: rgb(231,200,155);
    left: -1rem;
    transition: width 0.4s ease-out 0.1s;
}.training_specialist .student_glow:hover .name {
    transform: translateX(1rem);
}.training_specialist .student_glow:hover .name::before {
    width: 1.5rem;
}.training_specialist .student_glow > div:nth-child(2) > div {
    font-size: 0.95rem;
    color: rgb(217,168,109);
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-bottom: 0.5rem;
    opacity: 0.85;
    transform: translateY(0);
    font-weight: 600;
}.training_specialist .student_glow:hover > div:nth-child(2) > div {
    transform: translateY(-3px);
    opacity: 1;
}.training_specialist .experience_log {
    opacity: 0.92;
    margin: 0;
    position: relative;
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 0;
    transition: opacity 0.4s ease;
    line-height: 1.7;
    font-size: 16px;
}.training_specialist .experience_log::before {
    position: absolute;
    left: -1rem;
    content: "";
    opacity: 0.1;
    z-index: -1;
    top: -2.5rem;
    color: rgb(231,200,155);
    font-size: 8rem;
    transform: rotate(-5deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.training_specialist .student_glow:hover .experience_log::before {
    transform: rotate(5deg) translateY(-10px);
}.training_specialist .student_glow:hover .experience_log {
    opacity: 1;
}

@media (min-width: 768px) {.training_specialist .student_glow {
    grid-template-rows: auto 1fr;
    grid-template-columns: 250px 1fr;
    padding: 3.5rem;
    gap: 2rem 3rem;
}.training_specialist .student_glow > div:first-child {
    order: unset;
    grid-row: 1 / span 2;
    grid-column: 1;
}.training_specialist .student_glow > div:nth-child(2) {
    order: unset;
    grid-row: 1;
    grid-column: 2;
}.training_specialist .student_glow > div:last-child {
    grid-column: 2;
    grid-row: 2;
    order: unset;
}.training_specialist .img_hover_effect {
    clip-path: polygon(0% 0%, 95% 5%, 100% 100%, 5% 95%);
    height: 100%;
}.training_specialist .student_glow:hover .img_hover_effect {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
}

@media (min-width: 992px) {.training_specialist {
    padding: 7rem 0;
}.training_specialist .student_glow {
    padding: 4rem;
    grid-template-columns: 320px 1fr;
    gap: 3rem 4rem;
}.training_specialist .name {
    margin-bottom: 0.75rem;
    font-size: calc(22px * 1.1);
}.training_specialist .student_glow > div:nth-child(2) > div {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}.training_specialist .experience_log {
    font-size: calc(16px * 1.05);
    line-height: 1.8;
}
}

@media (max-width: 767px) {.training_specialist {
    padding: 4rem 0;
}.training_specialist .student_glow {
    padding: 2rem;
}.training_specialist .img_hover_effect {
    margin-bottom: 1rem;
    height: 250px;
}.training_specialist .name {
    text-align: center;
    margin-bottom: 0.5rem;
}.training_specialist .student_glow > div:nth-child(2) > div {
    margin-bottom: 1.5rem;
    text-align: center;
}.training_specialist .experience_log {
    line-height: 1.6;
    font-size: calc(16px * 0.95);
}.training_specialist .experience_log::before {
    transform: translateX(-50%);
    top: -1.5rem;
    left: 50%;
}.training_specialist .student_glow:hover .name {
    transform: translateX(0);
}.training_specialist .name::before {
    left: 50%;
    transform: translateX(-50%);
}.training_specialist .student_glow:hover .name::before {
    width: 50px;
}}.pricing_frame {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}.pricing_frame::before {
    top: 0;
    right: 0;
    content: "";
    z-index: 1;
    left: 0;
    background: linear-gradient(145deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    bottom: 0;
    position: absolute;
}.pricing_frame .container {
    z-index: 2;
    margin: 0 auto;
    position: relative;
    max-width: 1320px;
    padding: 0 15px;
}.pricing_frame .pay_options {
    display: flex;
    flex-direction: column;
    align-items: center;
}.pricing_frame h2 {
    font-size: 31px;
    opacity: 0;
    margin-bottom: 20px;
    transform: translateY(20px);
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    font-weight: 700;
    color: #ffffff;
}.pricing_frame .indv_sub {
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    color: rgb(255, 255, 255, 0.5);
    font-size: 16px;
    max-width: 800px;
    text-align: center;
}.pricing_frame .basic_cost {
    list-style: none;
    padding: 0;
    width: 100%;
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.pricing_frame .basic_cost li {
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: calc(0.3s + (0.15s * var(--li-index, 0)));
}.pricing_frame .basic_cost li:nth-child(1) {
    --li-index: 0;
}.pricing_frame .basic_cost li:nth-child(2) {
    --li-index: 1;
}.pricing_frame .basic_cost li:nth-child(3) {
    --li-index: 2;
}.pricing_frame .basic_cost li:nth-child(4) {
    --li-index: 3;
}.pricing_frame .fee_plan {
    text-decoration: none;
    height: 100%;
    will-change: transform;
    display: block;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateX(0deg);
}.pricing_frame .fee_plan:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
}.pricing_frame .plan_matrix {
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    height: 100%;
}.pricing_frame .fee_plan:hover .plan_matrix {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 15px rgba(rgb(231,200,155,0.5), 0.5);
    border-color: rgba(255,255,255,0.2);
}.pricing_frame .plan_matrix::before {
    height: 50%;
    opacity: 0.1;
    transform: rotate(-45deg);
    width: 40%;
    transition: all 0.6s ease;
    content: "";
    background: linear-gradient(135deg, rgb(231,200,155,0.5) 0%, transparent 70%);
    top: -10%;
    position: absolute;
    left: -10%;
}.pricing_frame .fee_plan:hover .plan_matrix::before {
    transform: rotate(-45deg) translateY(-20%);
    opacity: 0.15;
}.pricing_frame .plan_fee {
    height: 100%;
    padding: 35px 30px;
    min-height: 280px;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}.pricing_frame .plan_fee h4 {
    padding-bottom: 15px;
    font-size: calc(22px * 1.1);
    color: #ffffff;
    position: relative;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}.pricing_frame .plan_fee h4::after {
    bottom: 0;
    position: absolute;
    left: 0;
    height: 3px;
    content: "";
    transition: width 0.4s ease;
    background: rgb(231,200,155);
    width: 40px;
}.pricing_frame .fee_plan:hover .plan_fee h4::after {
    width: 60px;
}.pricing_frame .plan_fee p {
    color: rgb(255, 255, 255, 0.5);
    font-size: calc(16px * 0.9);
    word-wrap: break-word;
    flex-grow: 1;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.7;
    margin-bottom: 25px;
    hyphens: auto;
}.pricing_frame .cert_cost {
    padding: 10px 20px;
    color: rgb(231,200,155);
    align-self: flex-start;
    display: inline-block;
    font-size: calc(22px * 1.2);
    position: relative;
    font-weight: 700;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}.pricing_frame .cert_cost::before {
    transition: left 0.7s ease;
    height: 100%;
    left: -100%;
    top: 0;
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}.pricing_frame .fee_plan:hover .cert_cost::before {
    left: 100%;
}

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

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

@media (max-width: 992px) {.pricing_frame {
    padding: 80px 0;
}.pricing_frame h2 {
    font-size: calc(31px * 0.9);
}.pricing_frame .basic_cost {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.pricing_frame .plan_fee {
    padding: 25px 20px;
}
}

@media (max-width: 768px) {.pricing_frame {
    padding: 70px 0;
}.pricing_frame h2 {
    margin-bottom: 15px;
    font-size: calc(31px * 0.8);
}.pricing_frame .indv_sub {
    margin-bottom: 35px;
    font-size: calc(16px * 0.95);
}.pricing_frame .basic_cost {
    margin: 0 auto;
    max-width: 450px;
    grid-template-columns: 1fr;
}.pricing_frame .plan_fee {
    min-height: auto;
}
}

@media (max-width: 576px) {.pricing_frame {
    padding: 60px 0;
}.pricing_frame h2 {
    font-size: calc(31px * 0.7);
}.pricing_frame .indv_sub {
    font-size: calc(16px * 0.9);
}.pricing_frame .plan_fee {
    padding: 20px 15px;
}.pricing_frame .plan_fee h4 {
    font-size: 22px;
}.pricing_frame .plan_fee p {
    font-size: calc(16px * 0.85);
}.pricing_frame .cert_cost {
    padding: 8px 15px;
    font-size: 22px;
}}.statistical_report {
    background: rgb(244,229,201);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}.statistical_report::before {
    z-index: 0;
    opacity: 0.08;
    top: 0;
    content: "";
    width: 100%;
    left: 0;
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgb(231,200,155,0.5), rgb(217,168,109,0.5));
}.statistical_report::after {
    transform: rotate(30deg);
    right: -50px;
    background: rgb(231,200,155);
    content: "";
    top: -50px;
    position: absolute;
    width: 200px;
    z-index: 0;
    height: 200px;
    opacity: 0.05;
}.statistical_report h3 {
    margin-bottom: 3rem;
    font-size: 35px;
    transform: translateY(20px);
    font-weight: 700;
    animation: fadeSlideUp 0.8s forwards 0.2s;
    position: relative;
    z-index: 1;
    color: #000000;
    text-align: center;
    opacity: 0;
}.statistical_report .container {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}.statistical_report ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}.statistical_report .statistics_pluses {
    position: relative;
    display: flex;
    animation: fadeSlideUp 0.6s forwards;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s ease;
    padding: 1.5rem;
    opacity: 0;
    animation-delay: calc(0.15s * var(--i, 0));
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 
              0 1px 3px rgba(0, 0, 0, 0.03);
    background: linear-gradient(145deg, #ffffff, rgba(255, 255, 255, 0.85));
}.statistical_report .statistics_pluses:nth-child(1) {
    --i: 1;
}.statistical_report .statistics_pluses:nth-child(2) {
    --i: 2;
}.statistical_report .statistics_pluses:nth-child(3) {
    --i: 3;
}.statistical_report .statistics_pluses:nth-child(4) {
    --i: 4;
}.statistical_report .statistics_pluses:nth-child(5) {
    --i: 5;
}.statistical_report .statistics_pluses:nth-child(6) {
    --i: 6;
}.statistical_report .statistics_pluses:nth-child(7) {
    --i: 7;
}.statistical_report .statistics_pluses::before {
    transition: height 0.5s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    content: "";
    background: linear-gradient(to bottom, rgb(231,200,155), rgb(217,168,109));
    height: 0;
}.statistical_report .statistics_pluses:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 
              0 3px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px) scale(1.02);
}.statistical_report .statistics_pluses:hover::before {
    height: 100%;
}.statistical_report .statistics_pluses span {
    padding-left: 0.5rem;
    transition: transform 0.3s ease, padding-left 0.3s ease;
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.5rem;
}.statistical_report .statistics_pluses:hover span {
    padding-left: 0.75rem;
    color: rgb(231,200,155);
    transform: translateX(5px);
}.statistical_report .statistics_pluses p {
    margin: 0.5rem 0 0;
    font-weight: 700;
    position: relative;
    color: rgb(231,200,155);
    display: inline-block;
    font-size: 2.5rem;
}.statistical_report .statistics_pluses p::after {
    background: rgb(217,168,109);
    content: "";
    height: 2px;
    bottom: -4px;
    left: 0;
    width: 0;
    position: absolute;
    transition: width 0.4s ease;
}.statistical_report .statistics_pluses:hover p::after {
    width: 100%;
}

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

@media (max-width: 1200px) {.statistical_report ul {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}.statistical_report .statistics_pluses p {
    font-size: 2.2rem;
}
}

@media (max-width: 768px) {.statistical_report {
    padding: 3rem 0;
}.statistical_report h3 {
    font-size: calc(35px * 0.9);
    margin-bottom: 2rem;
}.statistical_report ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}.statistical_report .statistics_pluses {
    padding: 1.25rem;
}.statistical_report .statistics_pluses p {
    font-size: 2rem;
}
}

@media (max-width: 576px) {.statistical_report {
    padding: 2.5rem 0;
}.statistical_report h3 {
    font-size: calc(35px * 0.8);
    margin-bottom: 1.5rem;
}.statistical_report ul {
    grid-template-columns: 1fr;
    gap: 1rem;
}.statistical_report .statistics_pluses {
    padding: 1rem;
}.statistical_report .statistics_pluses p {
    font-size: 1.8rem;
}.statistical_report .statistics_pluses span {
    font-size: 0.9rem;
}}.about_this {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: rgb(244,229,201);
}.about_this::before {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(231,200,155,0.5) 0,
        rgb(231,200,155,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.1;
    z-index: 1;
    top: 0;
    content: "";
    position: absolute;
    left: 0;
}.about_this .container {
    z-index: 2;
    position: relative;
}.about_this .skill_studio {
    gap: 50px;
    flex-wrap: wrap;
    display: flex;
}.about_this h3 {
    margin-bottom: 30px;
    color: #000000;
    border-left: 5px solid rgb(231,200,155);
    font-size: 38px;
    padding-left: 20px;
    position: relative;
    font-weight: 700;
    width: 100%;
}.about_this .learning_classes {
    min-width: 300px;
    flex: 1;
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-radius: 10px;
}.about_this .learning_classes span {
    color: #ffffff;
    padding: 15px 25px;
    display: block;
    background: rgb(231,200,155);
    font-weight: 600;
    font-size: 18px;
}.about_this .learning_classes p {
    padding: 25px;
    color: #000000;
    line-height: 1.7;
    font-size: 15px;
}.about_this .img_hover_effect {
    margin: 0 25px 25px;
    transition: transform 0.4s ease;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}.about_this .img_hover_effect:hover {
    transform: scale(1.02);
}.about_this .study_program {
    min-width: 300px;
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    background: #ffffff;
}.about_this .study_program p {
    font-size: 15px;
    line-height: 1.7;
    order: 2;
    padding: 25px;
    color: #000000;
}.about_this .learn_way {
    transition: transform 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 25px 25px;
    position: relative;
    height: 300px;
    order: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.about_this .learn_way:hover {
    transform: scale(1.02);
}.about_this .learn_way::after {
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(to bottom, transparent 80%, rgba(0, 0, 0, 0.2) 100%);
    content: "";
    top: 0;
}.about_this .img_hover_effect::after {
    height: 100%;
    content: "";
    background: linear-gradient(to bottom, transparent 80%, rgba(0, 0, 0, 0.2) 100%);
    top: 0;
    width: 100%;
    left: 0;
    position: absolute;
}.about_this .learning_classes::before,
.about_this .study_program::before {
    top: 0;
    content: "";
    height: 5px;
    background: rgb(217,168,109);
    left: 0;
    width: 100%;
    position: absolute;
}.about_this .study_program::before {
    background: rgb(231,200,155);
}

@media (min-width: 1200px) {.about_this .learning_classes,
    .about_this .study_program {
    flex: 0 0 calc(50% - 25px);
}
}

@media (max-width: 1199px) and (min-width: 768px) {.about_this .skill_studio {
    justify-content: center;
}.about_this .learning_classes,
    .about_this .study_program {
    max-width: 500px;
    flex: 0 0 calc(50% - 25px);
}
}

@media (max-width: 767px) {.about_this {
    padding: 70px 0;
}.about_this .skill_studio {
    gap: 40px;
    flex-direction: column;
}.about_this h3 {
    font-size: calc(38px * 0.9);
    margin-bottom: 25px;
}.about_this .learning_classes span {
    font-size: calc(18px * 0.95);
    padding: 12px 20px;
}.about_this .learning_classes p,
    .about_this .study_program p {
    padding: 20px;
}.about_this .img_hover_effect,
    .about_this .learn_way {
    height: 250px;
    margin: 0 20px 20px;
}
}

@media (max-width: 576px) {.about_this {
    padding: 50px 0;
}.about_this h3 {
    font-size: calc(38px * 0.8);
    padding-left: 15px;
    margin-bottom: 20px;
}.about_this .learning_classes span {
    padding: 10px 15px;
    font-size: calc(18px * 0.9);
}.about_this .learning_classes p,
    .about_this .study_program p {
    padding: 15px;
    font-size: calc(15px * 0.95);
}.about_this .img_hover_effect,
    .about_this .learn_way {
    height: 200px;
    margin: 0 15px 15px;
}
}

@media (max-width: 1600px) and (min-width: 1200px) {.about_this .container {
    max-width: 1140px;
    margin: 0 auto;
}
}

@media (hover: hover) {.about_this .learning_classes,
    .about_this .study_program {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}.about_this .learning_classes:hover,
    .about_this .study_program:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}}

.about_this .learning_classes,
.about_this .study_program {
    flex-direction: column;
    display: flex;
}.about_this .learn_way {
    margin-top: 25px;
}.about_this .learn_way,
.about_this .img_hover_effect {
    min-height: 250px;
    flex: 1;
}.get_support {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(244,229,201) 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}.get_support::before {
    background: 
    linear-gradient(45deg, transparent 48%, rgb(231,200,155,0.5) 49%, rgb(231,200,155,0.5) 51%, transparent 52%) 0 0 / 50px 50px,
    linear-gradient(-45deg, transparent 48%, rgb(217,168,109,0.5) 49%, rgb(217,168,109,0.5) 51%, transparent 52%) 0 0 / 50px 50px;
    z-index: 1;
    height: 100%;
    opacity: 0.05;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
}.get_support::after {
    height: 30%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgb(231,200,155,0.5) 0%, transparent 100%);
    position: absolute;
    content: "";
    width: 100%;
    opacity: 0.05;
}.get_support .container {
    position: relative;
    z-index: 10;
}.get_support .join_us {
    border-top: 5px solid rgb(231,200,155);
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    position: relative;
    padding: 3.5rem;
}.get_support .join_us h2 {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    position: relative;
}.get_support .join_us h2::after {
    position: absolute;
    height: 4px;
    content: "";
    left: 0;
    border-radius: 10px;
    background-color: rgb(217,168,109);
    width: 40%;
    bottom: -8px;
}.get_support .join_us p {
    margin-bottom: 2.5rem;
    max-width: 85%;
    line-height: 1.7;
    font-size: 12px;
    color: #000000;
}.get_support .join_us p:last-of-type {
    font-weight: 600;
    color: #000000;
    background-color: rgb(244,229,201);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: inline-flex;
    border-radius: 10px;
    align-items: center;
}.get_support .join_us p:last-of-type svg {
    height: 22px;
    fill: rgb(231,200,155);
    margin-right: 12px;
    width: 22px;
}.get_support .join_us p:last-of-type svg path {
    fill: rgb(231,200,155);
}.get_support .edu_asksup {
    gap: 1.5rem;
    display: flex;
    flex-wrap: wrap;
}.get_support .chat_form {
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    height: 60px;
    color: transparent;
    position: relative;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1),
              -5px -5px 10px rgba(255, 255, 255, 0.8);
    align-items: center;
    background: linear-gradient(145deg, #ffffff, rgb(244,229,201));
    justify-content: center;
    transition: all 0.3s ease;
    width: 60px;
    text-indent: -9999px;
}.get_support .chat_form::before {
    font-size: 14px;
    white-space: nowrap;
    text-indent: 0;
    top: 70px;
    left: 50%;
    position: absolute;
    transition: opacity 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    content: attr(title);
    font-weight: 600;
    color: #000000;
}.get_support .chat_form:hover::before {
    opacity: 1;
}.get_support .chat_form:hover {
    background: rgb(231,200,155);
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1),
              -8px -8px 15px rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}.get_support .chat_form svg {
    transition: fill 0.3s ease;
    height: 24px;
    fill: rgb(231,200,155);
    width: 24px;
}.get_support .chat_form:hover svg {
    fill: #ffffff;
}.get_support .chat_form svg path {
    fill: rgb(231,200,155);
    transition: fill 0.3s ease;
}.get_support .chat_form:hover svg path {
    fill: #ffffff;
}

@media (max-width: 991px) {.get_support {
    padding: 4rem 0;
}.get_support .join_us {
    padding: 2.5rem;
}.get_support .join_us h2 {
    font-size: calc(30px * 0.9);
}.get_support .join_us p {
    max-width: 100%;
}
}

@media (max-width: 767px) {.get_support {
    padding: 3rem 0;
}.get_support .join_us {
    padding: 2rem;
}.get_support .edu_asksup {
    justify-content: center;
}.get_support .chat_form {
    width: 55px;
    height: 55px;
}}.privacy_frame {
    padding: 30px;
    width: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}.privacy_frame h1 {
    padding-bottom: 10px;
    color: rgb(231,200,155);
    font-weight: 700;
    border-bottom: 2px solid rgb(231,200,155);
    font-size: 47px;
    margin-bottom: 20px;
    margin-top: 30px;
}.privacy_frame h2 {
    border-bottom: 1px solid #000000;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000000;
    margin-top: 25px;
    font-size: 30px;
    padding-bottom: 8px;
}.privacy_frame ul, .privacy_frame ol {
    margin: 20px 0;
    list-style-position: inside;
    padding-left: 20px;
}.privacy_frame ul li, .privacy_frame ol li {
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 400;
}.privacy_frame p, .privacy_frame span, .privacy_frame div {
    margin-bottom: 10px;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}

@media only screen and (max-width: 800px) {.privacy_frame {
    padding: 20px 10px;
}.privacy_frame h1 {
    font-size: 30px;
    margin-bottom: 15px;
}.privacy_frame h2 {
    font-size: 23px;
    margin-bottom: 10px;
}.privacy_frame ul li, .privacy_frame ol li {
    font-size: 18px;
}}

.privacy_frame h3, .privacy_frame h4, .privacy_frame h5, .privacy_frame h6 {
    color: #000000;
    font-size: 23px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}.privacy_frame section {
    border-radius: 10px;
    padding: 20px;
    background: rgb(244,229,201);
}.privacy_frame a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: rgb(231,200,155);
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy_frame h1, .privacy_frame h2, .privacy_frame h3, .privacy_frame h4, .privacy_frame h5, .privacy_frame h6 {
    animation: fadeIn 0.6s ease-in-out;
}.cookieAgreementModal {
    animation: slideUp 0.5s forwards;
    z-index: 90;
    position: fixed;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    padding: 20px 0;
    transform: translateY(100%);
    border-top: 3px solid rgb(217,168,109);
    background: rgb(217,168,109);
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
.cookie_alerts {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 5%;
    display: flex;
}.cookieAgreementModal h5 {
    color: #ffffff;
    font-size: 21px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}.cookieAgreementModal p {
    font-size: 17px;
    margin: 0;
    line-height: 1.5;
    color: #ffffff;
}.consent_box {
    align-items: center;
    flex-shrink: 0;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgb(231,200,155));
    justify-content: center;
    display: flex;
}.consent_box svg {
    width: 80px;
    height: 80px;
    fill: rgb(231,200,155);
    transition: transform 0.3s ease-in-out;
}.consent_box:hover svg {
    transform: scale(1.1);
}.cookie_lock {
    background: linear-gradient(90deg, rgb(231,200,155), rgb(217,168,109));
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    font-size: 20px;
    white-space: nowrap;
    cursor: pointer;
    padding: 10px 20px;
    text-decoration: none;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 0 15px rgb(231,200,155);
    min-width: 140px;
    border-radius: 29px;
    line-height: 40px;
    margin-left: 10px;
}.cookie_lock:hover {
    box-shadow: 0 0 20px rgb(217,168,109);
}.cookie_button.online_tracking:hover {
    box-shadow: 0 0 15px rgb(217,168,109);
}.cookieAgreementModal p a {
    text-decoration: none;
    color: rgb(231,200,155);
    transition: color 0.3s ease;
}.cookieAgreementModal p a:hover {
    color: rgb(217,168,109);
}#cookie_box_overlay {
    display: none;
}#cookie_box_overlay:checked ~ .cookieAgreementModal {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 1200px) {.cookieAgreementModal {
    padding: 15px 0;
}.cookie_alerts {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.consent_box {
    display: none;
}.cookie_alerts {
    flex-direction: column;
    text-align: center;
    align-items: center;
}.cookieAgreementModal h5 {
    font-size: 16px;
    margin-bottom: 5px;
}.privacy_cookies {
    margin-bottom: 15px;
}.cookie_lock {
    min-width: 100%;
    margin: 10px 0;
}}
.program_structure {
    background: linear-gradient(120deg, rgb(244,229,201) 0%, rgba(0, 0, 0, 0.5) 60%, rgb(231,200,155,0.5) 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}.program_structure::before {
    top: 0;
    position: absolute;
    left: 0;
    background: 
        radial-gradient(ellipse at 75% 40%, rgb(217,168,109,0.5) 0%, transparent 50%),
        radial-gradient(circle at 25% 80%, rgb(231,200,155,0.5) 0%, transparent 40%);
    animation: pulseGlow 12s infinite alternate;
    opacity: 0.6;
    height: 100%;
    content: "";
    z-index: 1;
    width: 100%;
}.program_structure::after {
    background-image: 
        repeating-linear-gradient(45deg, #ffffff 0, #ffffff 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(135deg, #ffffff 0, #ffffff 1px, transparent 1px, transparent 60px);
    z-index: 1;
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    animation: gridShift 30s linear infinite;
    top: 0;
    opacity: 0.05;
    height: 100%;
}.program_structure .container {
    position: relative;
    z-index: 3;
}.program_structure .skill_studio {
    overflow: visible;
    background: transparent;
    display: flex;
    position: relative;
    flex-direction: column;
    border-radius: 10px;
}.program_structure .skill_map {
    z-index: 3;
    backdrop-filter: blur(10px);
    background: #ffffff;
    width: 75%;
    margin-right: auto;
    border-radius: 10px;
    margin-left: auto;
    padding: 60px;
    position: relative;
    transform: translateY(80px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgb(231,200,155,0.5),
        0 0 40px rgb(217,168,109,0.5);
}.program_structure .skill_map::before {
    width: 200px;
    background: linear-gradient(135deg, rgb(231,200,155,0.5), rgb(217,168,109,0.5));
    content: "";
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    height: 200px;
    top: -15px;
    z-index: -1;
    right: -15px;
    animation: morphShape 15s infinite alternate ease-in-out;
}.program_structure .header_lesson {
    align-items: center;
    animation: floatAndRotate 8s ease-in-out infinite;
    background: #ffffff;
    top: -60px;
    justify-content: center;
    border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
    height: 120px;
    transform-origin: center center;
    box-shadow: 
        0 15px 35px -10px rgba(0, 0, 0, 0.5),
        0 0 0 8px #ffffff,
        0 0 0 12px rgb(231,200,155,0.5);
    width: 120px;
    left: 60px;
    position: absolute;
    display: flex;
}.program_structure .header_lesson svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    fill: rgb(231,200,155);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 60%;
    height: 60%;
}.program_structure .header_lesson:hover svg {
    transform: scale(1.2) rotate(-10deg);
    fill: rgb(217,168,109);
}.program_structure .header_lesson svg path {
    stroke-width: 0.5;
    transition: stroke 0.4s ease;
    stroke: #000000;
}.program_structure .header_lesson:hover svg path {
    stroke-dasharray: 50;
    stroke: rgb(231,200,155);
    stroke-dashoffset: 50;
    animation: drawPath 2s forwards;
}.program_structure .skill_map h3 {
    padding-bottom: 15px;
    font-size: 28px;
    margin-bottom: 25px;
    transform: translateZ(0);
    color: #000000;
    position: relative;
    font-weight: 700;
}.program_structure .skill_map h3::before {
    background: rgb(231,200,155);
    bottom: 0;
    position: absolute;
    border-radius: 50%;
    height: 8px;
    content: "";
    left: 0;
    width: 8px;
}.program_structure .skill_map h3::after {
    background: linear-gradient(90deg, rgb(231,200,155), transparent);
    height: 3px;
    width: 80px;
    left: 15px;
    bottom: 2.5px;
    content: "";
    position: absolute;
}.program_structure .skill_map p {
    text-shadow: 0 0 1px rgba(0,0,0,0.01);
    line-height: 1.8;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 0;
    color: #000000;
}.program_structure .skill_map p::first-letter {
    margin-right: 8px;
    float: left;
    font-weight: 700;
    color: rgb(231,200,155);
    margin-top: 8px;
    font-size: 2em;
    line-height: 0.8;
}.program_structure .img_hover_effect {
    transition: transform 0.6s ease;
    width: 85%;
    overflow: hidden;
    height: 400px;
    transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
    position: relative;
    z-index: 2;
    margin-left: auto;
    box-shadow: 
        0 15px 35px -5px rgba(0, 0, 0, 0.5),
        0 0 0 5px #ffffff;
    border-radius: 
        10px 10px 
        calc(10px * 3) 10px;
}.program_structure .skill_studio:hover .img_hover_effect {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateZ(30px);
}.program_structure .img_hover_effect::before {
    height: 100%;
    position: absolute;
    mix-blend-mode: multiply;
    top: 0;
    background: 
        linear-gradient(
            to right,
            rgb(231,200,155,0.5) 0%,
            transparent 40%,
            rgb(217,168,109,0.5) 100%
        );
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.5s ease;
    left: 0;
    width: 100%;
    content: "";
}.program_structure .skill_studio:hover .img_hover_effect::before {
    opacity: 0.5;
}.program_structure .img_hover_effect::after {
    width: 100%;
    content: "";
    opacity: 0.1;
    z-index: 2;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(0, 0, 0, 0.5) 0,
            rgba(0, 0, 0, 0.5) 1px,
            transparent 1px,
            transparent 10px
        );
    left: 0;
    height: 100%;
    mix-blend-mode: overlay;
    top: 0;
    position: absolute;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes gridShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@keyframes floatAndRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(5px) rotate(3deg);
    }
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@media screen and (max-width: 1200px) {.program_structure {
    padding: 100px 0;
}.program_structure .skill_map {
    transform: translateY(70px);
    width: 85%;
    padding: 50px;
}.program_structure .img_hover_effect {
    height: 350px;
    width: 90%;
}
}

@media screen and (max-width: 992px) {.program_structure {
    padding: 80px 0;
}.program_structure .skill_studio {
    flex-direction: column-reverse;
}.program_structure .skill_map {
    padding: 40px;
    transform: translateY(-70px);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}.program_structure .header_lesson {
    top: -50px;
    left: 40px;
    height: 100px;
    width: 100px;
}.program_structure .img_hover_effect {
    margin-right: 0;
    height: 320px;
    margin-left: 0;
    width: 100%;
    transform: perspective(800px) rotateY(0) rotateX(0);
    border-radius: 10px;
}.program_structure .skill_studio:hover .img_hover_effect {
    transform: perspective(800px) rotateY(0) rotateX(0);
}
}

@media screen and (max-width: 768px) {.program_structure {
    padding: 60px 0;
}.program_structure .skill_map {
    padding: 30px;
    width: 100%;
    transform: translateY(-60px);
}.program_structure .header_lesson {
    height: 80px;
    width: 80px;
    left: 30px;
    top: -40px;
}.program_structure .skill_map h3 {
    font-size: calc(28px * 0.85);
    margin-bottom: 20px;
}.program_structure .skill_map p {
    font-size: calc(13px * 0.95);
}.program_structure .img_hover_effect {
    height: 280px;
}.program_structure .skill_map::before {
    height: 150px;
    right: -10px;
    width: 150px;
    top: -10px;
}
}

@media screen and (max-width: 576px) {.program_structure {
    padding: 50px 0;
}.program_structure .skill_map {
    transform: translateY(-40px);
    padding: 25px 20px;
}.program_structure .header_lesson {
    height: 70px;
    width: 70px;
    left: 20px;
    top: -35px;
}.program_structure .skill_map h3 {
    font-size: calc(28px * 0.75);
    padding-bottom: 12px;
    margin-bottom: 15px;
}.program_structure .skill_map h3::after {
    width: 60px;
}.program_structure .skill_map p {
    line-height: 1.6;
    font-size: calc(13px * 0.9);
}.program_structure .img_hover_effect {
    height: 220px;
}.program_structure .skill_map::before {
    width: 100px;
    height: 100px;
}}.conduct_code {
    color: #ffffff;
    z-index: 1;
    position: relative;
    padding: 5rem 0 3rem;
}.conduct_code::before {
    content: "";
    width: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgb(231,200,155,0.5) 100%);
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
    backdrop-filter: blur(8px);
}.conduct_code .container {
    grid-template-columns: 1.5fr 2fr;
    display: grid;
    gap: 3rem;
    position: relative;
}.conduct_code .company_holder {
    animation: borderPulse 4s infinite alternate;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgb(231,200,155);
}@keyframes borderPulse {
    0% {
        border-left-color: rgb(231,200,155);
    }
    50% {
        border-left-color: rgb(217,168,109);
    }
    100% {
        border-left-color: rgb(231,200,155);
    }
}

.conduct_code .company_holder h3 {
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    font-size: calc(29px * 1.2);
    -webkit-background-clip: text !important;
    background: linear-gradient(to right, #ffffff, rgb(217,168,109));
    font-weight: 700;
}.conduct_code .help_center {
    margin-top: 1rem;
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.6;
}.conduct_code .template_cta {
    display: flex;
    justify-content: flex-end;
}.conduct_code .top_section {
    display: flex;
    gap: 4rem;
}.conduct_code .top_sitebar {
    position: relative;
}.conduct_code .top_sitebar::before {
    opacity: 0.4;
    content: "";
    top: -10px;
    height: 40px;
    position: absolute;
    border-top: 1px solid rgb(231,200,155);
    border-left: 1px solid rgb(231,200,155);
    left: -20px;
    width: 40px;
}.conduct_code .top_sitebar::after {
    content: "";
    position: absolute;
    opacity: 0.4;
    height: 40px;
    border-bottom: 1px solid rgb(231,200,155);
    width: 40px;
    right: -20px;
    bottom: -10px;
    border-right: 1px solid rgb(231,200,155);
}.conduct_code .top_sitebar h5 {
    color: rgb(217,168,109);
    font-size: 21px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}.conduct_code .top_sitebar .top_section {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}.conduct_code .top_sitebar .top_section a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
    text-decoration: none;
    opacity: 0.8;
    font-size: 13px;
    color: #ffffff;
}.conduct_code .top_sitebar .top_section a::before {
    transition: all 0.3s ease;
    left: 0;
    position: absolute;
    width: 5px;
    content: "";
    transform: translateY(-50%);
    background-color: rgb(231,200,155);
    top: 50%;
    height: 5px;
    border-radius: 50%;
}.conduct_code .top_sitebar .top_section a:hover {
    color: rgb(231,200,155);
    opacity: 1;
    transform: translateX(5px);
}.conduct_code .top_sitebar .top_section a:hover::before {
    background-color: rgb(217,168,109);
    height: 7px;
    width: 7px;
}.intern_opp {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
}.intern_opp::before {
    top: 0;
    left: 0;
    height: 1px;
    position: absolute;
    opacity: 0.5;
    width: 100%;
    content: "";
    background: linear-gradient(to right, transparent, rgb(231,200,155), transparent);
}.intern_opp .container {
    align-items: center;
    display: flex;
    justify-content: center;
}.intern_opp .gift_card {
    font-size: 14px;
    text-align: center;
    opacity: 0.7;
    color: #ffffff;
}

@media screen and (max-width: 992px) {.conduct_code .container {
    gap: 2rem;
    grid-template-columns: 1fr;
}.conduct_code .company_holder {
    padding-left: 1rem;
    margin-bottom: 2rem;
}.conduct_code .template_cta {
    justify-content: flex-start;
}.conduct_code .top_section {
    gap: 2rem;
}
}

@media screen and (max-width: 768px) {.conduct_code {
    padding: 3rem 0 2rem;
}.conduct_code .top_section {
    gap: 2rem;
    flex-direction: column;
}.conduct_code .top_sitebar::before,
    .conduct_code .top_sitebar::after {
    display: none;
}.conduct_code .top_sitebar {
    margin-bottom: 1.5rem;
}.intern_opp {
    padding: 1rem 0;
}
}

@media screen and (max-width: 576px) {.conduct_code .company_holder h3 {
    font-size: 29px;
}.conduct_code .top_sitebar h5 {
    font-size: calc(20px * 1.1);
}.conduct_code .top_sitebar .top_section a {
    font-size: calc(13px * 0.9);
}}.gratFrame {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgb(244,229,201) 0%, rgb(231,200,155,0.5) 100%);
}.gratFrame::before {
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    z-index: 0;
    top: -50px;
    filter: blur(60px);
    background: rgb(217,168,109,0.5);
    right: -50px;
    content: "";
    position: absolute;
    height: 200px;
    width: 200px;
}.gratFrame::after {
    width: 100%;
    background: linear-gradient(90deg, transparent, rgb(231,200,155), transparent);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: 5px;
    content: "";
}.gratFrame .container {
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}.gratFrame h2 {
    max-width: 800px;
    transform: translateY(0);
    font-weight: 700;
    position: relative;
    line-height: 1.4;
    animation: slideInUp 0.8s ease-out forwards;
    color: #000000;
    font-size: 31px;
    opacity: 1;
    margin-bottom: 40px;
}.gratFrame h2::after {
    height: 3px;
    transform-origin: left;
    transition: transform 0.5s ease;
    transform: scaleX(1);
    position: absolute;
    bottom: -15px;
    left: 0;
    content: "";
    background: rgb(231,200,155);
    width: 60px;
}.gratFrame .skill_studio {
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    background: #ffffff;
    transform: translateY(20px);
    padding: 40px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    position: relative;
    border-left: 4px solid rgb(231,200,155);
}.gratFrame .skill_studio::before {
    height: 100%;
    opacity: 0.05;
    background: linear-gradient(45deg, transparent 49.5%, rgb(217,168,109,0.5) 49.5%, rgb(217,168,109,0.5) 50.5%, transparent 50.5%);
    z-index: -1;
    background-size: 20px 20px;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
}.gratFrame ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.gratFrame li {
    padding-left: 25px;
    position: relative;
}.gratFrame li::before {
    transition: transform 0.3s ease;
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    top: 10px;
    left: 0;
    transform: rotate(45deg);
    background: rgb(231,200,155);
}.gratFrame li:hover::before {
    transform: rotate(225deg);
}.gratFrame span {
    line-height: 1.8;
    color: #000000;
    font-size: 13px;
    display: block;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(15px);
    }
    50% {
        transform: translateY(0) translateX(30px);
    }
    75% {
        transform: translateY(15px) translateX(15px);
    }
}

@media (max-width: 991px) {.gratFrame {
    padding: 80px 0;
}.gratFrame h2 {
    max-width: 100%;
    font-size: calc(31px * 0.9);
}.gratFrame .skill_studio {
    padding: 30px;
}
}

@media (max-width: 767px) {.gratFrame {
    padding: 60px 0;
}.gratFrame h2 {
    font-size: calc(31px * 0.8);
    margin-bottom: 30px;
}.gratFrame h2::after {
    width: 40px;
}.gratFrame .skill_studio {
    padding: 25px 20px;
}.gratFrame span {
    font-size: calc(13px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 480px) {.gratFrame {
    padding: 40px 0;
}.gratFrame h2 {
    font-size: calc(31px * 0.7);
    margin-bottom: 25px;
}.gratFrame .skill_studio {
    padding: 20px 15px;
    border-left-width: 3px;
}.gratFrame li {
    padding-left: 20px;
}.gratFrame li::before {
    top: 8px;
    width: 6px;
    height: 6px;
}.gratFrame span {
    font-size: calc(13px * 0.9);
    line-height: 1.6;
}}.join_our_mailing_list {
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(135deg, rgb(231,200,155,0.5) 0%, rgb(217,168,109) 100%);
    overflow: hidden;
}.join_our_mailing_list::before {
    position: absolute;
    left: -10%;
    height: 70%;
    width: 120%;
    transform: rotate(-15deg);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
    background: rgb(217,168,109,0.5);
    top: -10%;
    content: "";
    z-index: 1;
}.join_our_mailing_list .skill_studio {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}.join_our_mailing_list .help_card {
    max-width: 90%;
    display: flex;
    transform: translateX(10%);
    flex-direction: column;
}.join_our_mailing_list h3 {
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    color: #ffffff;
    transform: skewX(-5deg);
    font-family: Arial, sans-serif;
    font-size: 38px;
}.join_our_mailing_list .input_holder {
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-radius: 13px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    max-width: 90%;
    transform: perspective(800px) rotateY(-5deg);
}.join_our_mailing_list input[type="email"] {
    padding: 1.2rem 1.5rem;
    border: none;
    color: #000000;
    font-family: Arial, sans-serif;
    background: #ffffff;
    transition: all 0.3s ease;
    flex-grow: 1;
    font-size: 15px;
}.join_our_mailing_list input[type="email"]:focus {
    outline: none;
    box-shadow: inset 0 0 0 3px rgb(231,200,155,0.5);
    background: rgb(244,229,201);
}.join_our_mailing_list .sub_status {
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #ffffff;
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, rgb(231,200,155), rgb(217,168,109));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}.join_our_mailing_list .sub_status:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(231,200,155,0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.join_our_mailing_list .sub_status:active {
    transform: translateY(2px);
    animation: pulse 1s forwards;
}

@media (max-width: 768px) {.join_our_mailing_list {
    padding: 3rem 1rem;
}.join_our_mailing_list .help_card {
    max-width: 100%;
    transform: translateX(0);
}.join_our_mailing_list h3 {
    font-size: calc(20px + 0.2rem);
    text-align: left;
}.join_our_mailing_list .input_holder {
    max-width: 100%;
    transform: perspective(0) rotateY(0);
    flex-direction: column;
}.join_our_mailing_list input[type="email"] {
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    width: 100%;
}.join_our_mailing_list .sub_status {
    width: 100%;
    padding: 1rem;
    border-radius: 0 0 10px 10px;
}}header .header_bar {
    z-index: 100;
    overflow: hidden;
    position: relative;
    background: rgb(244,229,201);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}header .header_bar::before {
    content: "";
    opacity: 0.2;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 10% 20%, rgb(231,200,155,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(217,168,109,0.5) 0%, transparent 30%);
    height: 100%;
    top: 0;
}header .header_bar::after {
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    background: linear-gradient(135deg, transparent 25%, rgb(231,200,155,0.5) 100%);
    right: 0;
    opacity: 0.1;
    width: 40%;
    height: 100%;
    z-index: -1;
    content: "";
    top: 0;
    position: absolute;
}header .container {
    padding: 1.8rem 2rem;
    position: relative;
}header .nav_site {
    gap: 3rem;
    align-items: center;
    grid-template-columns: auto 1fr;
    display: grid;
}header .header_lesson {
    z-index: 2;
    position: relative;
}header .head_main {
    position: relative;
    z-index: 2;
    display: block;
}header .head_main::before,
header .head_main::after {
    content: "";
    transition: all 0.5s ease;
    z-index: -1;
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    background: rgb(231,200,155,0.5);
}header .head_main::before {
    height: 50px;
    left: -15px;
    top: -15px;
    width: 50px;
}header .head_main::after {
    width: 25px;
    height: 25px;
    right: -10px;
    bottom: -5px;
    background: rgb(217,168,109,0.5);
}header .head_main:hover::before,
header .head_main:hover::after {
    transform: scale(1.2);
    opacity: 0.6;
}header .head_main svg {
    transition: all 0.3s ease;
    width: auto;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
    height: 50px;
}header .head_main:hover svg {
    transform: rotate(-5deg);
}header .top_sitebar {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    list-style: none;
    display: flex;
    justify-content: flex-end;
    border-radius: 0 21px 21px 0;
    flex-wrap: wrap;
    background: linear-gradient(to right, transparent, #ffffff);
    position: relative;
    padding: 10px 20px;
    margin: 0;
}header .top_sitebar::after {
    background-size: 10px 10px;
    width: 100%;
    left: 0;
    content: "";
    animation: moveStripes 20s linear infinite;
    opacity: 0.05;
    height: 100%;
    top: 0;
    background-image: 
        linear-gradient(45deg, rgb(231,200,155,0.5) 25%, transparent 25%, transparent 50%, 
        rgb(231,200,155,0.5) 50%, rgb(231,200,155,0.5) 75%, transparent 75%, transparent);
    z-index: -1;
    position: absolute;
}header .header_primary {
    position: relative;
    perspective: 800px;
    margin: 5px 8px;
}header .header_primary::before {
    left: -10px;
    top: 50%;
    transition: all 0.3s ease;
    position: absolute;
    width: 0;
    content: "";
    border-left: 5px solid rgb(231,200,155);
    height: 0;
    opacity: 0;
    border-top: 5px solid transparent;
    transform: translateY(-50%) scale(0);
    border-bottom: 5px solid transparent;
}header .header_primary:hover::before {
    left: -15px;
    opacity: 1;
    transform: translateY(-50%) scale(1);
}header .header_primary a {
    position: relative;
    display: block;
    text-decoration: none;
    border: 1px solid transparent;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: 600;
    background: transparent;
    padding: 10px 18px;
    color: #000000;
    font-size: 18px;
    overflow: hidden;
    transform-style: preserve-3d;
}header .header_primary a::before {
    left: 0;
    content: "";
    top: 0;
    position: absolute;
    transform: translateZ(-1px);
    background: #ffffff;
    width: 100%;
    height: 100%;
    z-index: -1;
}header .header_primary a::after {
    content: "";
    background: rgb(231,200,155);
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    transition: width 0.3s ease;
    left: 50%;
    height: 2px;
    position: absolute;
}header .header_primary a:hover {
    transform: translateZ(20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: rgb(231,200,155);
    border-color: rgb(231,200,155,0.5);
}header .header_primary a:hover::after {
    width: 80%;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@media (max-width: 991px) {header .nav_site {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 2rem;
}header .top_sitebar {
    background: #ffffff;
    clip-path: none;
    justify-content: center;
    width: 100%;
    border-radius: 21px;
}
}

@media (max-width: 767px) {header .container {
    padding: 1.5rem 1rem;
}header .header_primary {
    margin: 3px 5px;
}header .header_primary a {
    padding: 8px 15px;
    font-size: calc(18px - 1px);
}
}

@media (max-width: 480px) {header .top_sitebar {
    padding: 15px;
    flex-direction: column;
    align-items: center;
}header .header_primary {
    margin: 3px 0;
    width: 100%;
}header .header_primary a {
    text-align: center;
    width: 100%;
}header .header_primary::before {
    display: none;
}header .head_main svg {
    height: 40px;
}}.contact {
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    background-color: rgb(244,229,201);
}.contact::before {
    width: 100%;
    opacity: 0.15;
    position: absolute;
    height: 100%;
    top: 0;
    content: "";
    left: 0;
    background: linear-gradient(120deg, rgb(231,200,155,0.5) 0%, transparent 75%);
}.contact::after {
    opacity: 0.1;
    right: 0;
    height: 70%;
    content: "";
    bottom: 0;
    width: 70%;
    background: linear-gradient(240deg, rgb(217,168,109,0.5) 0%, transparent 70%);
    position: absolute;
}.contact .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}.contact h2 {
    color: #000000;
    position: relative;
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: 35px;
    margin-bottom: 15px;
    text-align: center;
}.contact .inquiry_grid {
    flex-direction: row-reverse;
    margin-top: 50px;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}.contact .img_hover_effect {
    min-height: 500px;
    flex: 0 0 40%;
    overflow: hidden;
    position: relative;
}.contact .img_hover_effect::after {
    bottom: 0;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.4));
    position: absolute;
    right: 0;
    content: "";
}.contact .inquiry_block {
    flex: 0 0 60%;
    position: relative;
    padding: 60px;
}.contact .inquiry_block::before {
    position: absolute;
    background: linear-gradient(to bottom, rgb(231,200,155), rgb(217,168,109));
    height: calc(100% - 80px);
    left: 0;
    top: 40px;
    content: "";
    width: 5px;
    border-radius: 2.5px;
}.contact form {
    width: 100%;
    padding-left: 25px;
}.contact form h3 {
    font-weight: 600;
    font-family: Arial, sans-serif;
    margin-bottom: 35px;
    font-size: 19px;
    color: #000000;
}.contact form input[type="text"] {
    background: rgb(244,229,201);
    margin-bottom: 20px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    padding: 18px 25px;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
    color: #000000;
}.contact form input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(231,200,155,0.5);
    background: rgba(rgb(231,200,155), 0.05);
}.contact form input[type="text"]::placeholder {
    color: rgba(#000000, 0.4);
}.contact .help_block {
    margin: 10px 0 30px;
    align-items: flex-start;
    display: flex;
}.contact .help_block input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact .help_block label {
    font-size: 13px;
    position: relative;
    color: #000000;
    cursor: pointer;
    padding-left: 35px;
    line-height: 1.5;
}.contact .help_block label::before {
    border: 2px solid rgb(231,200,155,0.5);
    height: 22px;
    top: 2px;
    transition: all 0.2s ease;
    width: 22px;
    position: absolute;
    left: 0;
    border-radius: 10px;
    content: "";
}.contact .help_block input[type="checkbox"]:checked + label::before {
    background-color: rgb(231,200,155);
    border-color: rgb(231,200,155);
}.contact .help_block input[type="checkbox"]:checked + label::after {
    height: 11px;
    transform: rotate(45deg);
    content: "";
    border-bottom: 2px solid #ffffff;
    position: absolute;
    width: 6px;
    left: 8px;
    border-right: 2px solid #ffffff;
    top: 9px;
}.contact .help_block label a {
    color: rgb(231,200,155);
    text-decoration: none;
    transition: all 0.3s ease;
}.contact .help_block label a:hover {
    color: rgb(217,168,109);
    text-decoration: underline;
}.contact form .inquiry_info {
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, rgb(231,200,155), rgb(217,168,109));
    padding: 15px 35px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;
    color: #ffffff;
}.contact form .inquiry_info::before {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg) translateX(-200%);
    height: 120%;
    top: -10%;
    transition: all 0.4s ease;
    width: 120%;
    content: "";
    position: absolute;
    left: -10%;
}.contact form .inquiry_info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(rgb(231,200,155), 0.3);
}.contact form .inquiry_info:hover::before {
    transform: rotate(45deg) translateX(200%);
}.contact svg {
    fill: rgb(231,200,155);
    width: 22px;
    height: 22px;
}.contact svg path {
    transition: fill 0.3s ease;
    fill: rgb(231,200,155);
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.1;
    }
}

@media screen and (max-width: 1024px) {.contact .inquiry_block {
    padding: 50px 40px;
}
}

@media screen and (max-width: 991px) {.contact .img_hover_effect {
    flex: 0 0 100%;
    min-height: 300px;
}.contact .inquiry_block {
    flex: 0 0 100%;
}.contact .inquiry_block::before {
    width: calc(100% - 80px);
    height: 5px;
    left: 40px;
    background: linear-gradient(to right, rgb(231,200,155), rgb(217,168,109));
    top: 0;
}.contact form {
    padding-top: 25px;
    padding-left: 0;
}
}

@media screen and (max-width: 767px) {.contact {
    padding: 70px 0;
}.contact .img_hover_effect {
    min-height: 250px;
}.contact .inquiry_block {
    padding: 40px 30px;
}.contact .inquiry_block::before {
    left: 30px;
    width: calc(100% - 60px);
}
}

@media screen and (max-width: 480px) {.contact {
    padding: 50px 0;
}.contact h2 {
    font-size: calc(35px * 0.8);
}.contact .img_hover_effect {
    min-height: 200px;
}.contact .inquiry_block {
    padding: 30px 20px;
}.contact .inquiry_block::before {
    width: calc(100% - 40px);
    left: 20px;
}.contact form h3 {
    font-size: calc(19px * 0.9);
    margin-bottom: 25px;
}.contact form input[type="text"] {
    padding: 15px 20px;
}.contact form .inquiry_info {
    text-align: center;
    width: 100%;
}
}