@import 'https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap';
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Manrope', sans-serif;
  background: #fffefd;
  color: #2a2a2a;
  line-height: 1.6;
}
.header-holder {
  background: linear-gradient(127deg, #8321c3 0%, #a855d8 48%, #8321c3 100%);
  padding: 22px 0;
  box-shadow: 0 8px 20px #8321c32e;
}
.header-holder .container-main {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-holder .grid-header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 18px 24px;
  align-items: center;
}
.header-holder .logo-wrapper {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
}
.header-holder .logo-wrapper img {
  height: 94px;
  width: 94px;
  background: #fffefdf2;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 6px 16px #0000001f;
}
.header-holder .company-name-block {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
}
.header-holder .company-name-block h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fffefd;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 8px #00000026;
}
.header-holder .nav-holder {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 8px;
}
.header-holder .nav-holder ul {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.header-holder .nav-holder ul li a {
  display: block;
  padding: 14px 28px;
  color: #fffefd;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  background: #fffefd1f;
  border-radius: 10px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.header-holder .nav-holder ul li a:hover {
  background: #fffefd3d;
  color: #fff;
}
@media (max-width: 1024px) {
  .header-holder .grid-header {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
  }
  .header-holder .logo-wrapper {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
  }
  .header-holder .company-name-block {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
  }
  .header-holder .company-name-block h1 {
    font-size: 32px;
  }
  .header-holder .nav-holder {
    grid-column: 1;
    grid-row: 3;
  }
}
@media (max-width: 640px) {
  .header-holder .logo-wrapper img {
    height: 76px;
    width: 76px;
  }
  .header-holder .company-name-block h1 {
    font-size: 26px;
  }
  .header-holder .nav-holder ul {
    flex-direction: column;
    gap: 6px;
  }
  .header-holder .nav-holder ul li a {
    text-align: center;
    padding: 12px 20px;
  }
}
main {
  min-height: 200px;
}
.footer-main {
  background: linear-gradient(135deg, #f8f7f9 0%, #fff 100%);
  padding: 48px 0 28px;
  border-top: 1px solid #e8e6ea;
}
.footer-main .container-footer {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-main .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 38px;
}
.footer-main .footer-logo-section img {
  height: 86px;
  width: 86px;
  background: #8321c314;
  padding: 10px;
  border-radius: 10px;
}
.footer-main .footer-nav-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #8321c3;
  margin-bottom: 16px;
}
.footer-main .footer-nav-section ul {
  list-style: none;
}
.footer-main .footer-nav-section ul li {
  margin-bottom: 10px;
}
.footer-main .footer-nav-section ul li a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.22s ease;
}
.footer-main .footer-nav-section ul li a:hover {
  color: #8321c3;
}
.footer-main .footer-nav-section .submenu-list {
  margin-top: 12px;
  padding-left: 14px;
}
.footer-main .footer-contact-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #198636;
  margin-bottom: 16px;
}
.footer-main .footer-contact-section p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
}
.footer-main .footer-contact-section a {
  color: #198636;
  text-decoration: none;
  transition: color 0.22s ease;
}
.footer-main .footer-contact-section a:hover {
  color: #125a24;
}
.footer-main .copyright-text {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #e8e6ea;
  color: #6a6a6a;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer-main .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-main .footer-logo-section {
    display: flex;
    justify-content: center;
  }
}
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0009;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.3s ease;
}
.cookie-modal-overlay.is-visible {
  display: flex;
}
@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDownModal {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUpModal {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
.cookie-modal-overlay .consent-banner {
  background: #fff;
  border-radius: 14px;
  padding: 32px 36px;
  max-width: 580px;
  width: 90%;
  box-shadow: 0 12px 48px #00000047;
  animation: slideDownModal 0.4s ease;
}
.cookie-modal-overlay.is-hiding .consent-banner {
  animation: slideUpModal 0.4s ease;
}
.cookie-modal-overlay .consent-banner h2 {
  font-size: 22px;
  font-weight: 700;
  color: #8321c3;
  margin-bottom: 14px;
}
.cookie-modal-overlay .consent-banner p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 20px;
  line-height: 1.6;
}
.cookie-modal-overlay .consent-banner .consent-categories {
  margin-bottom: 24px;
}
.cookie-modal-overlay .consent-banner .category-item {
  margin-bottom: 14px;
  padding: 12px;
  background: #f9f8fa;
  border-radius: 8px;
}
.cookie-modal-overlay .consent-banner .category-item label {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #2a2a2a;
  cursor: pointer;
}
.cookie-modal-overlay .consent-banner .category-item input[type='radio'] {
  margin-right: 10px;
  cursor: pointer;
}
.cookie-modal-overlay .consent-banner .category-item.is-required {
  opacity: 0.7;
}
.cookie-modal-overlay .consent-banner .category-item.is-required label {
  cursor: default;
}
.cookie-modal-overlay .consent-banner .button-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal-overlay .consent-banner .button-group button {
  flex: 1;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.cookie-modal-overlay .consent-banner .btn-accept-all {
  background: #198636;
  color: #fff;
}
.cookie-modal-overlay .consent-banner .btn-accept-all:hover {
  background: #125a24;
}
.cookie-modal-overlay .consent-banner .btn-reject-all {
  background: #8321c3;
  color: #fff;
}
.cookie-modal-overlay .consent-banner .btn-reject-all:hover {
  background: #6a1a9f;
}
.cookie-modal-overlay .consent-banner .btn-save-prefs {
  background: #e8e6ea;
  color: #2a2a2a;
}
.cookie-modal-overlay .consent-banner .btn-save-prefs:hover {
  background: #d4d1d8;
}
.cookie-modal-overlay .consent-banner .privacy-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.cookie-modal-overlay .consent-banner .privacy-links a {
  font-size: 13px;
  color: #8321c3;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.22s ease;
}
.cookie-modal-overlay .consent-banner .privacy-links a:hover {
  color: #6a1a9f;
}
.cookie-modal-overlay .consent-banner .privacy-links .icon-holder {
  font-size: 16px;
}
@media (max-width: 640px) {
  .cookie-modal-overlay .consent-banner {
    padding: 24px 20px;
  }
  .cookie-modal-overlay .consent-banner .button-group {
    flex-direction: column;
  }
  .cookie-modal-overlay .consent-banner .privacy-links {
    flex-direction: column;
    gap: 12px;
  }
}
.info-legal {
  max-width: 1366px;
  margin: 0 auto;
  padding: 60px 24px;
  background: linear-gradient(135deg, #fffefd 0%, #f8f4fc 100%);
}
.info-legal p {
  font-size: 16px;
  line-height: 1.75;
  color: #2d2d2d;
  margin: 0 0 20px;
  text-align: justify;
}
.info-legal p + p {
  margin-top: 16px;
}
.info-legal ul,
.info-legal ol {
  margin: 0 0 24px;
  padding: 0 0 0 28px;
  line-height: 1.75;
  color: #2d2d2d;
}
.info-legal ul {
  list-style-type: disc;
}
.info-legal ol {
  list-style-type: decimal;
}
.info-legal li {
  font-size: 16px;
  margin: 0 0 12px;
  padding-left: 8px;
}
.info-legal li:last-child {
  margin-bottom: 0;
}
.info-legal ul ul,
.info-legal ol ol,
.info-legal ul ol,
.info-legal ol ul {
  margin: 12px 0 0;
}
.info-legal em,
.info-legal i {
  font-style: italic;
  color: #1a1a1a;
}
.info-legal a {
  color: #8321c3;
  text-decoration: none;
  border-bottom: 1px solid #8321c34d;
  transition: all 0.25s ease;
  font-weight: 500;
}
.info-legal a:hover {
  color: #198636;
  border-bottom-color: #198636;
  background: #1986360d;
}
.info-legal a:active {
  transform: translateY(1px);
}
.info-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 32px;
  background: #fffefd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px #8321c314;
}
.info-legal thead {
  background: linear-gradient(125deg, #8321c3 0%, #9d3dd6 100%);
}
.info-legal thead tr {
  border: none;
}
.info-legal tbody {
  background: #fffefd;
}
.info-legal tr {
  border-bottom: 1px solid #e8e3f0;
}
.info-legal tr:last-child {
  border-bottom: none;
}
.info-legal th {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #fffefd;
  letter-spacing: 0.3px;
}
.info-legal td {
  padding: 14px 20px;
  font-size: 15px;
  color: #2d2d2d;
  line-height: 1.6;
}
.info-legal tbody tr:nth-child(even) {
  background: linear-gradient(180deg, #faf8fd 0%, #fffefd 100%);
}
.info-legal tbody tr:hover {
  background: linear-gradient(180deg, #f3ebfc 0%, #f9f6fd 100%);
}
.info-legal hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #8321c300 0%, #8321c34d 50%, #8321c300 100%);
  margin: 40px 0;
}
.info-legal div {
  margin: 0 0 24px;
}
.info-legal div p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .info-legal {
    padding: 48px 20px;
  }
  .info-legal p,
  .info-legal li,
  .info-legal td {
    font-size: 15px;
  }
  .info-legal th {
    font-size: 14px;
    padding: 14px 16px;
  }
  .info-legal td {
    padding: 12px 16px;
  }
}
@media (max-width: 640px) {
  .info-legal {
    padding: 32px 16px;
  }
  .info-legal p {
    text-align: left;
    font-size: 14px;
    line-height: 1.7;
  }
  .info-legal ul,
  .info-legal ol {
    padding-left: 20px;
  }
  .info-legal li {
    font-size: 14px;
    padding-left: 4px;
  }
  .info-legal table {
    font-size: 13px;
    border-radius: 8px;
  }
  .info-legal th {
    padding: 12px;
    font-size: 13px;
  }
  .info-legal td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .info-legal hr {
    margin: 28px 0;
  }
}
.title-hero-section {
  position: relative;
  padding: 90px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #8321c3 0%, #198636 100%);
}
.title-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    #fffefd0d,
    #fffefd0d 20px,
    transparent 20px,
    transparent 40px
  );
  pointer-events: none;
}
.hero-content-wrapper {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.hero-text-holder {
  flex: 1;
  color: #fffefd;
}
.hero-text-holder h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 700;
}
.hero-text-holder .metaphor-text {
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0;
}
.hero-visual-anchor {
  flex: 0 0 420px;
  position: relative;
}
.hero-visual-anchor img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  box-shadow: 0 12px 48px #00000059;
}
@media (max-width: 1024px) {
  .hero-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .hero-visual-anchor {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .hero-text-holder h1 {
    font-size: 42px;
  }
}
@media (max-width: 640px) {
  .title-hero-section {
    padding: 60px 20px;
  }
  .hero-text-holder h1 {
    font-size: 34px;
  }
  .hero-text-holder .metaphor-text {
    font-size: 17px;
  }
  .hero-visual-anchor img {
    height: 280px;
  }
}
.courses-catalog-area {
  padding: 100px 20px;
  background: #fffefd;
}
.catalog-container {
  max-width: 1366px;
  margin: 0 auto;
}
.catalog-intro-section {
  max-width: 780px;
  margin: 0 auto 70px;
  text-align: center;
}
.catalog-intro-section h2 {
  font-size: 38px;
  color: #1a1a1a;
  margin: 0 0 20px;
  font-weight: 700;
}
.catalog-intro-section p {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}
.courses-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.course-card-item {
  background: linear-gradient(145deg, #f9f9f9 0%, #fff 100%);
  border-radius: 14px;
  padding: 40px 32px;
  box-shadow: 0 6px 24px #8321c314;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}
.course-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px #8321c329;
}
.course-card-item .icon-holder {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #8321c3 0%, #198636 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.course-card-item .icon-holder i {
  font-size: 32px;
  color: #fffefd;
}
.course-card-item h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 16px;
  font-weight: 600;
}
.course-card-item p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0 0 24px;
}
.course-card-item .duration-info {
  font-size: 14px;
  color: #8321c3;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-card-item .duration-info i {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .courses-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .courses-catalog-area {
    padding: 70px 20px;
  }
  .catalog-intro-section h2 {
    font-size: 32px;
  }
  .courses-grid-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.learning-process-segment {
  padding: 90px 20px;
  background: linear-gradient(165deg, #f4f0f7 0%, #e8f5ec 100%);
}
.process-wrapper-holder {
  max-width: 1366px;
  margin: 0 auto;
}
.process-header-text {
  text-align: center;
  margin-bottom: 64px;
}
.process-header-text h2 {
  font-size: 40px;
  color: #1a1a1a;
  margin: 0 0 18px;
  font-weight: 700;
}
.process-header-text .subtitle-line {
  font-size: 17px;
  color: #5a5a5a;
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.steps-timeline-holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-timeline-holder::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #8321c3 0%, #198636 100%);
  z-index: 1;
}
.step-item-box {
  position: relative;
  z-index: 2;
  text-align: center;
}
.step-number-circle {
  width: 80px;
  height: 80px;
  background: #fffefd;
  border: 4px solid #8321c3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  font-weight: 700;
  color: #8321c3;
  box-shadow: 0 6px 20px #8321c333;
}
.step-item-box h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin: 0 0 12px;
  font-weight: 600;
}
.step-item-box p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 1024px) {
  .steps-timeline-holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
  }
  .steps-timeline-holder::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .learning-process-segment {
    padding: 70px 20px;
  }
  .process-header-text h2 {
    font-size: 34px;
  }
  .steps-timeline-holder {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.format-tabs-section {
  padding: 100px 20px;
  background: #fffefd;
}
.format-tabs-container {
  max-width: 1366px;
  margin: 0 auto;
}
.format-section-title {
  text-align: center;
  margin-bottom: 56px;
}
.format-section-title h2 {
  font-size: 39px;
  color: #1a1a1a;
  margin: 0 0 16px;
  font-weight: 700;
}
.format-section-title .intro-description {
  font-size: 17px;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.6;
}
.tabs-interactive-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.tabs-nav-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.tabs-nav-row input[type='radio'] {
  display: none;
}
.tabs-nav-row label {
  padding: 16px 36px;
  background: #f4f4f4;
  border-radius: 10px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #5a5a5a;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.tabs-nav-row label:hover {
  background: #e8e8e8;
  color: #1a1a1a;
}
.tabs-nav-row input[type='radio']:checked + label {
  background: linear-gradient(135deg, #8321c3 0%, #198636 100%);
  color: #fffefd;
  border-color: #8321c3;
  box-shadow: 0 6px 20px #8321c34d;
}
.tab-content-panel {
  display: none;
  background: linear-gradient(145deg, #f9f9f9 0%, #fff 100%);
  border-radius: 14px;
  padding: 48px;
  box-shadow: 0 8px 28px #8321c31a;
}
#tab1:checked ~ .tab-content-panel[data-tab='1'],
#tab2:checked ~ .tab-content-panel[data-tab='2'],
#tab3:checked ~ .tab-content-panel[data-tab='3'] {
  display: block;
}
.tab-content-panel h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin: 0 0 20px;
  font-weight: 700;
}
.tab-content-panel p {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0 0 24px;
}
.benefits-list-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.benefit-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #8321c30a;
  border-radius: 10px;
  border-left: 4px solid #8321c3;
}
.benefit-item-row i {
  font-size: 24px;
  color: #198636;
  flex-shrink: 0;
}
.benefit-item-row span {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .benefits-list-holder {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .format-tabs-section {
    padding: 70px 20px;
  }
  .format-section-title h2 {
    font-size: 32px;
  }
  .tab-content-panel {
    padding: 32px 24px;
  }
  .tabs-nav-row label {
    padding: 12px 24px;
    font-size: 15px;
  }
}
.cta-enrollment-zone {
  padding: 90px 20px;
  background: linear-gradient(155deg, #8321c3 0%, #198636 100%);
  position: relative;
  overflow: hidden;
}
.cta-enrollment-zone::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #fffefd1a 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content-box {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content-box h2 {
  font-size: 44px;
  color: #fffefd;
  margin: 0 0 24px;
  font-weight: 700;
  line-height: 1.3;
}
.cta-content-box p {
  font-size: 19px;
  color: #fffefd;
  line-height: 1.7;
  margin: 0 0 40px;
  opacity: 0.95;
}
.cta-action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-primary-btn {
  padding: 18px 48px;
  background: #fffefd;
  color: #8321c3;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px #0003;
  transition: all 0.3s ease;
  border: 3px solid #fffefd;
}
.cta-primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px #0000004d;
  background: #f5f5f5;
}
.cta-secondary-btn {
  padding: 18px 48px;
  background: transparent;
  color: #fffefd;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 3px solid #fffefd;
  transition: all 0.3s ease;
}
.cta-secondary-btn:hover {
  background: #fffefd26;
  transform: translateY(-4px);
}
.cta-primary-btn i,
.cta-secondary-btn i {
  font-size: 22px;
}
@media (max-width: 640px) {
  .cta-enrollment-zone {
    padding: 70px 20px;
  }
  .cta-content-box h2 {
    font-size: 34px;
  }
  .cta-content-box p {
    font-size: 17px;
  }
  .cta-action-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-primary-btn,
  .cta-secondary-btn {
    justify-content: center;
  }
}
.title-holder {
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 2rem;
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.title-holder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, #8321c308 1px, transparent 1px),
    linear-gradient(to bottom, #8321c308 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.title-holder .side-visual {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.35;
  filter: grayscale(0.6);
  position: relative;
  z-index: 1;
}
.title-holder .central-content {
  position: relative;
  z-index: 2;
}
.title-holder .main-title {
  font-size: 3.2rem;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 2.5rem;
  font-weight: 700;
}
.title-holder .subtitle-text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0 0 1.8rem;
}
.title-holder .extra-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  padding-top: 1.5rem;
  border-top: 2px solid #8321c326;
}
.community-section-holder {
  background: linear-gradient(125deg, #fffefd 0%, #8321c30d 100%);
  padding: 6rem 2rem;
}
.community-inner-wrapper {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.community-text-area .section-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8321c3;
  margin: 0 0 1.2rem;
  font-weight: 600;
}
.community-text-area .section-heading {
  font-size: 2.6rem;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 2rem;
  font-weight: 700;
}
.community-text-area .description-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 1.5rem;
}
.community-benefits-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1.2rem;
}
.community-benefits-list .benefit-entry {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.community-benefits-list .benefit-entry i {
  color: #198636;
  font-size: 1.4rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.community-benefits-list .benefit-entry .benefit-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.community-visual-side {
  position: relative;
}
.community-visual-side img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px #8321c326;
}
.research-analytics-wrapper {
  padding: 6rem 2rem;
  background: #fffefd;
}
.research-analytics-content {
  max-width: 1366px;
  margin: 0 auto;
}
.research-top-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}
.research-top-intro .intro-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
  font-weight: 700;
}
.research-top-intro .intro-description {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #555;
}
.research-tabs-container {
  position: relative;
}
.research-tabs-container input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.research-tabs-nav {
  display: flex;
  gap: 1rem;
  margin: 0 0 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.research-tabs-nav .tab-label-btn {
  padding: 0.9rem 2rem;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.research-tabs-nav .tab-label-btn:hover {
  background: #ebebeb;
  color: #333;
}
.research-tabs-container input[type='radio']:checked + .tab-label-btn {
  background: linear-gradient(135deg, #8321c3 0%, #a855f7 100%);
  color: #fff;
  border-color: #8321c3;
  box-shadow: 0 6px 20px #8321c34d;
}
.research-tabs-content {
  position: relative;
}
.research-tab-panel {
  display: none;
  animation: fadeInContent 0.4s ease;
}
@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.research-tabs-container
  input[type='radio']:nth-of-type(1):checked
  ~ .research-tabs-content
  .research-tab-panel:nth-of-type(1),
.research-tabs-container
  input[type='radio']:nth-of-type(2):checked
  ~ .research-tabs-content
  .research-tab-panel:nth-of-type(2),
.research-tabs-container
  input[type='radio']:nth-of-type(3):checked
  ~ .research-tabs-content
  .research-tab-panel:nth-of-type(3) {
  display: block;
}
.panel-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.insight-card-v2 {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}
.insight-card-v2:hover {
  border-color: #8321c3;
  box-shadow: 0 8px 24px #8321c31f;
  transform: translateY(-4px);
}
.insight-card-v2 .card-icon-holder {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #8321c31a 0%, #1986361a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
}
.insight-card-v2 .card-icon-holder i {
  font-size: 1.6rem;
  color: #8321c3;
}
.insight-card-v2 .card-title-v2 {
  font-size: 1.3rem;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 1rem;
  font-weight: 600;
}
.insight-card-v2 .card-description-v2 {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}
.after-learning-zone {
  background: linear-gradient(155deg, #19863614 0%, #fffefd 100%);
  padding: 6rem 2rem;
}
.after-learning-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.after-learning-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px #19863633;
}
.after-learning-content .category-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: #1986361f;
  color: #198636;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  margin: 0 0 1.5rem;
}
.after-learning-content .content-heading-alt {
  font-size: 2.7rem;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 2rem;
  font-weight: 700;
}
.after-learning-content .content-text-alt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 2.5rem;
}
.support-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.support-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #198636;
  transition: all 0.3s ease;
}
.support-feature-item:hover {
  box-shadow: 0 6px 18px #19863626;
  transform: translateX(6px);
}
.support-feature-item i {
  font-size: 1.5rem;
  color: #198636;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.support-feature-item .feature-detail {
  flex: 1;
}
.support-feature-item .feature-detail .feature-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}
.support-feature-item .feature-detail .feature-info {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}
.after-learning-content .action-btn-holder {
  margin-top: 3rem;
}
.after-learning-content .primary-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, #8321c3 0%, #a855f7 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px #8321c340;
}
.after-learning-content .primary-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px #8321c359;
}
.after-learning-content .primary-action-btn i {
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .title-holder {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
  }
  .title-holder .side-visual {
    display: none;
  }
  .title-holder .main-title {
    font-size: 2.4rem;
  }
  .community-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .research-analytics-wrapper {
    padding: 4rem 2rem;
  }
  .panel-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .after-learning-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .support-features-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .title-holder .main-title {
    font-size: 2rem;
  }
  .community-text-area .section-heading {
    font-size: 2rem;
  }
  .research-top-intro .intro-heading {
    font-size: 2.2rem;
  }
  .research-tabs-nav {
    flex-direction: column;
    gap: 0.8rem;
  }
  .research-tabs-nav .tab-label-btn {
    width: 100%;
    text-align: center;
  }
  .after-learning-content .content-heading-alt {
    font-size: 2rem;
  }
  .community-visual-side img,
  .after-learning-visual img {
    height: 320px;
  }
}
.hero-about-uniquespo {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(142deg, #8321c3 0%, #198636 100%);
  padding: 80px 20px;
}
.hero-about-uniquespo .wrapper-main {
  max-width: 1366px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
}
.hero-about-uniquespo .content-section {
  max-width: 620px;
}
.hero-about-uniquespo .title-big {
  font-size: 48px;
  line-height: 1.2;
  color: #fffefd;
  margin: 0 0 22px;
  font-weight: 700;
}
.hero-about-uniquespo .title-big .accent-word {
  position: relative;
  display: inline-block;
}
.hero-about-uniquespo .title-big .accent-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fffefd;
  opacity: 0.6;
}
.hero-about-uniquespo .description-text {
  font-size: 18px;
  line-height: 1.6;
  color: #fffefd;
  opacity: 0.95;
  margin: 0;
}
.hero-about-uniquespo .visual-cutout {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  z-index: 2;
}
.hero-about-uniquespo .visual-cutout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-about-uniquespo .visual-cutout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8321c34d 0%, transparent 60%);
  z-index: 1;
}
.hero-about-uniquespo .shape-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #fffefd26 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}
.hero-about-uniquespo .shape-accent.top-left {
  top: -100px;
  left: -80px;
}
.hero-about-uniquespo .shape-accent.bottom-right {
  bottom: -120px;
  right: 200px;
}
@media (max-width: 1024px) {
  .hero-about-uniquespo .visual-cutout {
    width: 380px;
    height: 380px;
    right: 30px;
  }
  .hero-about-uniquespo .title-big {
    font-size: 38px;
  }
}
@media (max-width: 640px) {
  .hero-about-uniquespo {
    min-height: 420px;
    padding: 60px 20px;
  }
  .hero-about-uniquespo .visual-cutout {
    display: none;
  }
  .hero-about-uniquespo .content-section {
    max-width: 100%;
  }
  .hero-about-uniquespo .title-big {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .hero-about-uniquespo .description-text {
    font-size: 16px;
  }
}
.story-timeline-v2 {
  background: #fffefd;
  padding: 90px 20px;
}
.story-timeline-v2 .container-holder {
  max-width: 1366px;
  margin: 0 auto;
}
.story-timeline-v2 .intro-header {
  text-align: center;
  margin-bottom: 70px;
}
.story-timeline-v2 .intro-header h2 {
  font-size: 38px;
  color: #1a1a1a;
  margin: 0 0 16px;
  font-weight: 700;
}
.story-timeline-v2 .intro-header p {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 740px;
  margin: 0 auto;
}
.story-timeline-v2 .timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.story-timeline-v2 .milestone-box {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
}
.story-timeline-v2 .milestone-box:hover {
  transform: translateY(-4px);
  border-color: #8321c3;
  box-shadow: 0 12px 28px #8321c326;
}
.story-timeline-v2 .milestone-box .year-badge {
  display: inline-block;
  background: linear-gradient(135deg, #8321c3, #198636);
  color: #fffefd;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.story-timeline-v2 .milestone-box h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin: 0 0 14px;
  font-weight: 600;
}
.story-timeline-v2 .milestone-box p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}
.story-timeline-v2 .milestone-box .icon-holder {
  position: absolute;
  top: -18px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #fffefd;
  border: 2px solid #8321c3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #8321c3;
}
@media (max-width: 1024px) {
  .story-timeline-v2 .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .story-timeline-v2 {
    padding: 60px 20px;
  }
  .story-timeline-v2 .intro-header {
    margin-bottom: 50px;
  }
  .story-timeline-v2 .intro-header h2 {
    font-size: 28px;
  }
  .story-timeline-v2 .timeline-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .story-timeline-v2 .milestone-box {
    padding: 28px 22px;
  }
}
.approach-split-layout {
  background: #f4f4f4;
  padding: 0;
  overflow: hidden;
}
.approach-split-layout .dual-column-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1366px;
  margin: 0 auto;
  min-height: 600px;
}
.approach-split-layout .text-panel {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fffefd;
}
.approach-split-layout .text-panel h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin: 0 0 28px;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
.approach-split-layout .text-panel h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #8321c3, #198636);
  border-radius: 3px;
}
.approach-split-layout .principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.approach-split-layout .principle-list li {
  padding: 18px 0;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.approach-split-layout .principle-list li:last-child {
  border-bottom: none;
}
.approach-split-layout .principle-list .icon-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #198636;
  color: #fffefd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}
.approach-split-layout .principle-list .text-content-item h4 {
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 6px;
  font-weight: 600;
}
.approach-split-layout .principle-list .text-content-item p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}
.approach-split-layout .image-panel {
  position: relative;
  overflow: hidden;
}
.approach-split-layout .image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.approach-split-layout .image-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #8321c31a 0%, transparent 50%);
}
@media (max-width: 1024px) {
  .approach-split-layout .dual-column-wrapper {
    grid-template-columns: 1fr;
  }
  .approach-split-layout .text-panel {
    padding: 60px 40px;
  }
  .approach-split-layout .image-panel {
    min-height: 400px;
  }
}
@media (max-width: 640px) {
  .approach-split-layout .text-panel {
    padding: 50px 20px;
  }
  .approach-split-layout .text-panel h2 {
    font-size: 28px;
    margin-bottom: 22px;
  }
  .approach-split-layout .principle-list li {
    padding: 14px 0;
  }
  .approach-split-layout .principle-list .text-content-item h4 {
    font-size: 16px;
  }
  .approach-split-layout .image-panel {
    min-height: 320px;
  }
}
.intro-section-v2 {
  position: relative;
  background: linear-gradient(142deg, #8321c3 0%, #198636 100%);
  overflow: hidden;
}
.intro-section-v2 .diagonal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1366px;
  margin: 0 auto;
  min-height: 520px;
  position: relative;
}
.intro-section-v2 .text-holder {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.intro-section-v2 .primary-heading {
  font-size: 48px;
  font-weight: 700;
  color: #fffefd;
  margin: 0 0 16px;
  line-height: 1.2;
}
.intro-section-v2 .secondary-heading {
  font-size: 28px;
  font-weight: 500;
  color: #fffefde6;
  margin: 0 0 24px;
  line-height: 1.3;
}
.intro-section-v2 .description-text {
  font-size: 17px;
  color: #fffefdd9;
  line-height: 1.6;
  max-width: 520px;
}
.intro-section-v2 .image-holder {
  position: relative;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.intro-section-v2 .image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.intro-section-v2 .bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: #fffefd14;
  pointer-events: none;
}
.intro-section-v2 .decor-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: 10%;
}
.intro-section-v2 .decor-2 {
  width: 180px;
  height: 180px;
  bottom: 40px;
  left: 5%;
}
.contact-content-section {
  background: #fffefd;
  padding: 90px 20px;
}
.contact-content-section .content-wrapper-main {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-content-section .info-column {
  background: linear-gradient(135deg, #8321c30f 0%, #1986360f 100%);
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 8px 24px #8321c31f;
}
.contact-content-section .info-title {
  font-size: 26px;
  font-weight: 700;
  color: #8321c3;
  margin: 0 0 32px;
}
.contact-content-section .contact-method-holder {
  margin: 0 0 36px;
}
.contact-content-section .method-label {
  font-size: 14px;
  font-weight: 600;
  color: #198636;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  display: block;
}
.contact-content-section .method-value {
  font-size: 19px;
  color: #1a1a1a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
}
.contact-content-section .method-value i {
  font-size: 22px;
  color: #8321c3;
}
.contact-content-section .method-link {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.25s;
}
.contact-content-section .method-link:hover {
  color: #8321c3;
}
.contact-content-section .address-holder {
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 2px solid #8321c326;
}
.contact-content-section .address-text {
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.7;
  margin: 0;
}
.contact-content-section .form-column {
  background: #fff;
  border-radius: 12px;
  padding: 50px 45px;
  box-shadow: 0 6px 20px #00000014;
}
.contact-content-section .form-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
}
.contact-content-section .form-subtitle {
  font-size: 16px;
  color: #555;
  margin: 0 0 40px;
  line-height: 1.5;
}
.contact-content-section .form-element {
  margin: 0 0 28px;
}
.contact-content-section .input-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 10px;
}
.contact-content-section .text-input-field,
.contact-content-section .email-input-field {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.25s;
  box-sizing: border-box;
}
.contact-content-section .text-input-field:focus,
.contact-content-section .email-input-field:focus {
  outline: none;
  border-color: #8321c3;
  background: #fff;
  box-shadow: 0 4px 12px #8321c326;
}
.contact-content-section .checkbox-group-holder {
  margin: 0 0 32px;
}
.contact-content-section .checkbox-group-title {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 16px;
}
.contact-content-section .checkbox-item-row {
  display: flex;
  align-items: center;
  margin: 0 0 14px;
}
.contact-content-section .checkbox-input {
  width: 20px;
  height: 20px;
  margin: 0 12px 0 0;
  cursor: pointer;
  accent-color: #8321c3;
}
.contact-content-section .checkbox-label-text {
  font-size: 15px;
  color: #3a3a3a;
  cursor: pointer;
  user-select: none;
}
.contact-content-section .privacy-consent-holder {
  margin: 0 0 32px;
  display: flex;
  align-items: start;
  gap: 12px;
}
.contact-content-section .privacy-checkbox {
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  cursor: pointer;
  accent-color: #198636;
  flex-shrink: 0;
}
.contact-content-section .privacy-text {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}
.contact-content-section .privacy-text a {
  color: #8321c3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-content-section .privacy-text a:hover {
  color: #198636;
  text-decoration: underline;
}
.contact-content-section .submit-button-holder {
  text-align: left;
}
.contact-content-section .submit-btn {
  background: linear-gradient(125deg, #8321c3 0%, #198636 100%);
  color: #fffefd;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 48px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 18px #8321c34d;
  position: relative;
  z-index: 10;
}
.contact-content-section .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px #8321c366;
}
.contact-content-section .submit-btn:active {
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .intro-section-v2 .diagonal-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .intro-section-v2 .text-holder {
    padding: 60px 40px;
  }
  .intro-section-v2 .image-holder {
    min-height: 320px;
    clip-path: none;
  }
  .intro-section-v2 .primary-heading {
    font-size: 38px;
  }
  .intro-section-v2 .secondary-heading {
    font-size: 24px;
  }
  .contact-content-section .content-wrapper-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-content-section {
    padding: 60px 20px;
  }
}
@media (max-width: 640px) {
  .intro-section-v2 .text-holder {
    padding: 50px 24px;
  }
  .intro-section-v2 .primary-heading {
    font-size: 32px;
  }
  .intro-section-v2 .secondary-heading {
    font-size: 20px;
  }
  .intro-section-v2 .description-text {
    font-size: 16px;
  }
  .contact-content-section .info-column {
    padding: 36px 28px;
  }
  .contact-content-section .form-column {
    padding: 36px 28px;
  }
  .contact-content-section .form-title {
    font-size: 26px;
  }
  .contact-content-section .submit-btn {
    width: 100%;
    padding: 15px 32px;
  }
}
.program-hero-wrapper {
  background: linear-gradient(162deg, #8321c3 0%, #198636 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.program-hero-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: #fffefd14;
  border-radius: 50%;
  pointer-events: none;
}
.hero-content-holder {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text-area {
  color: #fffefd;
}
.hero-text-area h1 {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 700;
}
.hero-text-area .lead-text {
  font-size: 19px;
  line-height: 1.6;
  margin: 0 0 32px;
  opacity: 0.95;
}
.hero-cta-button {
  display: inline-block;
  background: #fffefd;
  color: #8321c3;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 17px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 8px 24px #0003;
}
.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #0000004d;
}
.hero-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px #00000040;
}
.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, #8321c366 100%);
  pointer-events: none;
}
.hero-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.structure-section-v2 {
  padding: 90px 20px;
  background: #fffefd;
}
.structure-inner-wrap {
  max-width: 1366px;
  margin: 0 auto;
}
.structure-title-row {
  text-align: center;
  margin-bottom: 64px;
}
.structure-title-row h2 {
  font-size: 38px;
  color: #2a2a2a;
  margin: 0 0 16px;
  font-weight: 700;
}
.structure-title-row p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}
.modules-grid-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.module-card-item {
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 28px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.module-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #8321c3 0%, #198636 100%);
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.module-card-item:hover {
  border-color: #8321c3;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px #8321c326;
}
.module-card-item:hover::before {
  opacity: 1;
}
.module-card-item h3 {
  font-size: 22px;
  color: #2a2a2a;
  margin: 0 0 14px;
  font-weight: 600;
}
.module-card-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}
.approach-wrapper {
  padding: 85px 20px;
  background: linear-gradient(225deg, #f5f0fb 0%, #e8f5ec 100%);
  position: relative;
}
.approach-container {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: center;
}
.approach-visual-side {
  flex: 0 0 480px;
}
.approach-visual-side img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 40px #19863633;
}
.approach-text-side {
  flex: 1;
}
.approach-text-side h2 {
  font-size: 36px;
  color: #2a2a2a;
  margin: 0 0 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.approach-text-side h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8321c3 0%, #198636 100%);
  border-radius: 3px;
}
.approach-text-side .intro-para {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin: 32px 0 28px;
}
.method-list-holder {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.method-item-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.method-icon-wrap {
  flex: 0 0 48px;
  height: 48px;
  background: linear-gradient(135deg, #8321c3 0%, #198636 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fffefd;
  font-size: 24px;
}
.method-text-wrap h4 {
  font-size: 19px;
  color: #2a2a2a;
  margin: 0 0 6px;
  font-weight: 600;
}
.method-text-wrap p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.benefits-zone {
  padding: 88px 20px;
  background: #fff;
}
.benefits-inner {
  max-width: 1366px;
  margin: 0 auto;
}
.benefits-header-text {
  text-align: center;
  margin-bottom: 56px;
}
.benefits-header-text h2 {
  font-size: 37px;
  color: #2a2a2a;
  margin: 0 0 18px;
  font-weight: 700;
}
.benefits-header-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}
.benefit-tabs-wrap {
  position: relative;
}
.benefit-tabs-wrap input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tab-nav-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-nav-row label {
  padding: 14px 32px;
  background: #f5f5f5;
  color: #555;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.2s;
  border: 2px solid transparent;
}
.tab-nav-row label:hover {
  background: #ececec;
  transform: translateY(-2px);
}
.benefit-tabs-wrap input[type='radio']:checked + label {
  background: linear-gradient(135deg, #8321c3 0%, #198636 100%);
  color: #fffefd;
  border-color: #8321c3;
}
.tab-panel-holder {
  display: none;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  padding: 44px 40px;
  box-shadow: 0 6px 20px #0000000f;
}
.benefit-tabs-wrap input[type='radio']:nth-of-type(1):checked ~ .tab-panel-holder:nth-of-type(1),
.benefit-tabs-wrap input[type='radio']:nth-of-type(2):checked ~ .tab-panel-holder:nth-of-type(2),
.benefit-tabs-wrap input[type='radio']:nth-of-type(3):checked ~ .tab-panel-holder:nth-of-type(3) {
  display: block;
}
.tab-panel-holder h3 {
  font-size: 26px;
  color: #2a2a2a;
  margin: 0 0 20px;
  font-weight: 700;
}
.tab-panel-holder p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 24px;
}
.panel-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.panel-feature-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.panel-feature-box i {
  color: #198636;
  font-size: 22px;
  margin-top: 2px;
}
.panel-feature-box span {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.enroll-section-alt {
  padding: 90px 20px;
  background: linear-gradient(48deg, #8321c3 0%, #198636 100%);
  text-align: center;
  color: #fffefd;
  position: relative;
  overflow: hidden;
}
.enroll-section-alt::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: #fffefd0f;
  border-radius: 50%;
  pointer-events: none;
}
.enroll-content-holder {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.enroll-content-holder h2 {
  font-size: 40px;
  margin: 0 0 22px;
  font-weight: 700;
}
.enroll-content-holder p {
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 36px;
  opacity: 0.95;
}
.enroll-action-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.enroll-button-primary {
  display: inline-block;
  background: #fffefd;
  color: #8321c3;
  padding: 17px 44px;
  text-decoration: none;
  border-radius: 11px;
  font-weight: 700;
  font-size: 17px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 10px 28px #00000040;
}
.enroll-button-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px #00000059;
}
.enroll-button-secondary {
  display: inline-block;
  background: transparent;
  color: #fffefd;
  padding: 17px 44px;
  text-decoration: none;
  border-radius: 11px;
  font-weight: 600;
  font-size: 17px;
  border: 2px solid #fffefd;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.enroll-button-secondary:hover {
  background: #fffefd;
  color: #8321c3;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .hero-content-holder {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text-area h1 {
    font-size: 38px;
  }
  .modules-grid-alt {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-container {
    flex-direction: column;
    gap: 50px;
  }
  .approach-visual-side {
    flex: 0 0 auto;
    width: 100%;
  }
  .panel-feature-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .program-hero-wrapper {
    padding: 60px 20px;
  }
  .hero-text-area h1 {
    font-size: 32px;
  }
  .hero-text-area .lead-text {
    font-size: 17px;
  }
  .hero-image-frame img {
    height: 320px;
  }
  .modules-grid-alt {
    grid-template-columns: 1fr;
  }
  .structure-title-row h2 {
    font-size: 30px;
  }
  .approach-text-side h2 {
    font-size: 28px;
  }
  .approach-visual-side img {
    height: 360px;
  }
  .benefits-header-text h2 {
    font-size: 29px;
  }
  .tab-nav-row {
    flex-direction: column;
  }
  .tab-nav-row label {
    width: 100%;
    text-align: center;
  }
  .enroll-content-holder h2 {
    font-size: 32px;
  }
  .enroll-action-group {
    flex-direction: column;
    align-items: stretch;
  }
  .enroll-button-primary,
  .enroll-button-secondary {
    width: 100%;
    text-align: center;
  }
}
.success-frame {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}
.confirmation-holder {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(142deg, #8321c3 0%, #198636 100%);
  position: relative;
  overflow: hidden;
}
.confirmation-holder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #fffefd26 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.confirmation-holder::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #fffefd1a 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.confirmation-content-box {
  background: #fffefd;
  border-radius: 12px;
  padding: 60px 50px;
  max-width: 680px;
  text-align: center;
  box-shadow: 0 12px 40px #8321c333;
  position: relative;
  z-index: 2;
}
.confirmation-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #8321c3, #198636);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px #8321c340;
}
.confirmation-icon-wrapper i {
  font-size: 48px;
  color: #fffefd;
}
.confirmation-content-box h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.3;
}
.confirmation-text-main {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 28px;
}
.confirmation-detail-note {
  font-size: 15px;
  line-height: 1.5;
  color: #6a6a6a;
  margin: 0 0 36px;
  padding: 20px;
  background: #8321c30a;
  border-radius: 8px;
  border-left: 4px solid #8321c3;
}
.confirmation-action-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.primary-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #8321c3, #198636);
  color: #fffefd;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px #8321c34d;
  position: relative;
  z-index: 3;
}
.primary-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px #8321c366;
}
.primary-action-btn i {
  font-size: 20px;
}
.secondary-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: #8321c3;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid #8321c3;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}
.secondary-action-btn:hover {
  background: #8321c3;
  color: #fffefd;
  transform: translateY(-2px);
}
.secondary-action-btn i {
  font-size: 20px;
}
.info-grid-section {
  padding: 90px 20px;
  background: #fffefd;
}
.info-cards-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.info-single-card {
  background: linear-gradient(145deg, #8321c308, #19863608);
  border-radius: 14px;
  padding: 40px 32px;
  border: 1px solid #8321c31f;
  transition: all 0.35s ease;
}
.info-single-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px #8321c326;
  border-color: #8321c3;
}
.info-card-icon-holder {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #8321c3, #198636);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.info-card-icon-holder i {
  font-size: 32px;
  color: #fffefd;
}
.info-single-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.3;
}
.info-single-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}
.info-card-link-wrap {
  margin-top: 20px;
}
.info-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8321c3;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.info-inline-link:hover {
  gap: 12px;
  color: #198636;
}
.info-inline-link i {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .confirmation-content-box {
    padding: 50px 40px;
  }
  .confirmation-content-box h1 {
    font-size: 28px;
  }
  .info-cards-layout {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .confirmation-holder {
    padding: 60px 20px;
    min-height: auto;
  }
  .confirmation-content-box {
    padding: 40px 28px;
  }
  .confirmation-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 24px;
  }
  .confirmation-icon-wrapper i {
    font-size: 38px;
  }
  .confirmation-content-box h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .confirmation-text-main {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .confirmation-detail-note {
    font-size: 14px;
    padding: 16px;
    margin-bottom: 28px;
  }
  .confirmation-action-group {
    flex-direction: column;
    gap: 12px;
  }
  .primary-action-btn,
  .secondary-action-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .info-grid-section {
    padding: 60px 20px;
  }
  .info-cards-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .info-single-card {
    padding: 32px 24px;
  }
  .info-single-card h3 {
    font-size: 20px;
  }
}
