    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --blue: #142c88;
      --deep-blue: #0f1a3d;
      --light: #ededed;
      --text: #5d5d5d;
      --border: #e7e7e7;
      --shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    html,
    body {
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: "Jost", sans-serif;
      background: #f3f3f3;
      color: var(--text);
    }

    .page {
      width: min(1460px, calc(100% - 24px));
      margin: 12px auto;
      background: #fff;
      border: 1px solid #dcdcdc;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
    }

    .header {
      height: 90px;
      background: #fff;
      /* border-bottom: 1px solid var(--border); */
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      position: relative;
      z-index: 30;
    }

    .logo-area {
      width: 520px;
      display: flex;
      align-items: center;
      padding-left: 30px;
      min-width: 0;
    }

    .logo-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .logo-top {
      display: flex;
      align-items: center;
      height: 34px;
    }

    .logo-left {
      height: 34px;
      padding: 0 14px;
      display: flex;
      align-items: center;
      background: var(--blue);
      color: #fff;
      border-radius: 18px 0 0 18px;
      font-size: 16px;
      letter-spacing: .3px;
    }

    .logo-right {
      height: 34px;
      padding: 0 34px;
      display: flex;
      align-items: center;
      background: #4c4c4c;
      color: #fff;
      border-radius: 18px;
      margin-left: -8px;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .logo-sub {
      margin-top: 6px;
      margin-left: 12px;
      font-size: 10px;
      color: #9a9a9a;
      letter-spacing: 2.4px;
      white-space: nowrap;
    }

    .desktop-nav {
      list-style: none;
      display: flex;
      height: 100%;
      flex-shrink: 0;
    }

    .desktop-nav>li {
      min-width: 96px;
      border-left: 1px solid var(--border);
      background: #fff;
      position: relative;

      font-family: "Poppins", sans-serif !important;
      font-size: 16px
    }

    .desktop-nav>li>a,
    .desktop-nav>li>button {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #3d3d3d;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      padding: 0 18px;
      white-space: nowrap;
      background: transparent;
      border: 0;
      cursor: pointer;
    }

    .desktop-nav>li.active>a,
    .desktop-nav>li:hover>a,
    .desktop-nav>li:hover>button {
      background: var(--blue);
      color: #fff;
    }

    .desktop-nav>li.lang {
      min-width: 56px;
      background: #f8f8f8;
    }

    .desktop-nav>li.lang>a {
      flex-direction: column;
      gap: 3px;
      color: #1c2d74;
    }

    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 210px;
      background: #102a83;
      display: none;
      box-shadow: var(--shadow);
    }

    .desktop-nav>li.has-dropdown:hover .dropdown {
      display: block;
    }

    .dropdown a {
      display: block;
      padding: 13px 16px;
      text-decoration: none;
      color: #fff;
      font-size: 11px;
      border-bottom: 1px solid rgba(255, 255, 255, .09);
      font-family: "Poppins", sans-serif !important;
      font-size: 14px
    }

    .dropdown a:hover {
      background: #0f1a3d;
    }

    .dropdown a:last-child {
      border-bottom: 0;
    }

    .mobile-toggle {
      display: none;
      width: 68px;
      border: 0;
      background: #fff;
      border-left: 1px solid var(--border);
      cursor: pointer;
      flex-shrink: 0;
    }

    .mobile-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--blue);
      margin: 5px auto;
    }

    .mobile-panel {
      display: none;
      position: absolute;
      top: 90px;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid var(--border);
      box-shadow: var(--shadow);
      z-index: 40;
    }

    .mobile-panel.open {
      display: block;
    }

    .mobile-panel a,
    .mobile-panel button {
      width: 100%;
      min-height: 50px;
      padding: 0 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      color: #333;
      font-size: 13px;
      font-weight: 700;
    }

    .mobile-submenu {
      display: none;
      background: #f7f7f7;
    }

    .mobile-submenu.open {
      display: block;
    }

    .mobile-submenu a {
      min-height: 42px;
      padding-left: 30px;
      font-size: 12px;
      font-weight: 600;
    }

    .curve-section {
      position: relative;
      min-height: 760px;
      background: #fff;
      overflow: hidden;
    }

    .left-shape {
      position: absolute;
      top: 0;
      left: 0;
      width: 320px;
      height: 540px;
      z-index: 1;
      pointer-events: none;
    }

    .left-shape svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .bg-shape {
      position: absolute;
      top: 0;
      left: -30px;
      width: 1500px;
      height: 100%;
      background: var(--light);
      border-top-left-radius: 620px;
      z-index: 2;
      overflow: hidden;
    }


    /* DOTS */
    .slider-dots {
      position: absolute;
      left: 50%;
      bottom: 150px;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 5000;
    }

    .slider-dots button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: 0.3s;
    }

    .slider-dots button.active {
      background: #fff;
      transform: scale(1.2);
    }

    .slider::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(237, 237, 237, .82) 0%, rgba(237, 237, 237, .55) 18%, rgba(237, 237, 237, .18) 38%, rgba(237, 237, 237, .0) 70%),
        linear-gradient(to bottom, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
      pointer-events: none;
    }

    .slider-dots {
      position: absolute;
      left: 50%;
      bottom: 150px;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 6000;
    }

    .slider-dots button {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .95);
      background: transparent;
      cursor: pointer;
    }

    .slider-dots button.active {
      background: #fff;
    }

    .white-arc {
      position: absolute;
      top: 0;
      left: 0;
      width: 560px;
      height: 560px;
      z-index: 3;
      pointer-events: none;
    }

    .white-arc::before {
      content: "";
      position: absolute;
      inset: 0;
      border-top-left-radius: 560px;
      border-top: 22px solid rgba(255, 255, 255, 0.58);
      border-left: 22px solid rgba(255, 255, 255, 0.58);
    }

    .content-inner {
      position: relative;
      z-index: 5;
      padding: 160px 10px 40px 180px;
      /* max-width: 980px; */
    }

    .content-title {
      font-size: 27px;
      line-height: 1.05;
      color: var(--blue);
      font-weight: 700;
      margin-bottom: 22px;
      text-align: left;
      font-family: "Poppins", sans-serif !important;

    }

    .content-text {

      font-size: 18px;
      line-height: 1.9;
      color: #666;
      margin-bottom: 24px;
    }

    .cta-row {
      display: flex;
      gap: 14px;
      margin-top: 26px;
      flex-wrap: wrap;
    }

    .btn {
      min-height: 46px;
      padding: 0 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 24px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      transition: .2s ease;
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .82);
      color: var(--blue);
      border: 1px solid rgba(20, 44, 136, .12);
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .logo-row {
      display: flex;
      gap: 18px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .mini-brand {
      min-width: 140px;
      height: 48px;
      padding: 0 20px;
      border-radius: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      box-shadow: 0 6px 14px rgba(0, 0, 0, .05);
    }

    .mini-brand.dark {
      background: #4b4b4b;
    }

    .mini-brand.orange {
      background: #e29a2d;
    }

    .mini-brand.cyan {
      background: #33a8e0;
    }

    .footer {
      background: #0C2373;
      border-top: 1px solid #FFF;
    }

    .footer-top {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 80px;
      gap: 20px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: none;
      color: #f2f2f2;
      font-size: 13px;
      font-weight: 600;
    }

    .footer-links a:hover {
      color: cadetblue
    }

    .footer-bottom {
      min-height: 46px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 80px;
      gap: 20px;
      font-size: 13px;
      color: #FFF;
      background: #071443
    }

    .socials {
      display: flex;
      gap: 10px;
    }

    .socials a {
      width: 32px;
      height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #f4f4f4;
      color: var(--blue);
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
    }

    @media (max-width: 1100px) {

      .page {
        width: calc(100% - 20px);
      }

      .logo-area {
        padding-left: 24px;
        width: auto;
      }

      .bg-shape {
        left: 0;
        width: 1200px;
        height: 100%;
        border-top-left-radius: 520px;
      }

      .white-arc {
        width: 420px;
        height: 420px;
      }

      .content-inner {
        padding: 120px 34px 60px 190px;
      }

      .content-title {
        font-size: 34px;
      }

      .content-text {
        font-size: 16px;
      }

      .footer-top,
      .footer-bottom {
        padding-left: 28px;
        padding-right: 28px;
      }
    }

    @media (max-width: 768px) {


      .page {
        width: 100%;
        margin: 0;
        border: 0;
      }

      .header {
        height: 76px;
      }

      .logo-area {
        width: auto;
        flex: 1;
        padding: 12px 16px;
      }

      .logo-top {
        height: 30px;
      }

      .logo-left {
        height: 30px;
        font-size: 14px;
        padding: 0 12px;
      }

      .logo-right {
        height: 30px;
        font-size: 18px;
        padding: 0 24px;
      }

      .logo-sub {
        font-size: 8px;
        letter-spacing: 1.7px;
        margin-top: 5px;
        margin-left: 10px;
      }

      .desktop-nav {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .mobile-panel {
        top: 76px;
      }

      .curve-section {
        min-height: 560px;
      }

      .left-shape {
        width: 170px;
        height: 290px;
      }

      .bg-shape {
        top: 0;
        left: 0;
        width: 1000px;
        height: 100%;
        border-top-left-radius: 320px;
      }

      .white-arc {
        width: 230px;
        height: 230px;
      }

      .white-arc::before {
        border-top-width: 14px;
        border-left-width: 14px;
      }

      .content-inner {
        padding: 86px 18px 36px 10px;
        max-width: 100%;
      }

      .content-title {
        font-size: 28px;
        margin-bottom: 16px;
      }

      .content-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 16px;
      }

      .logo-row {
        gap: 10px;
        margin-top: 22px;
      }

      .mini-brand {
        min-width: 110px;
        height: 40px;
        font-size: 22px;
      }

      .footer-top {
        padding: 18px 16px;
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-links {
        gap: 16px;
      }

      .footer-bottom {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
      }

      .slider-dots {
        position: absolute;
        left: 0%;
        bottom: 20px;
        transform: translateX(-20%);
        display: flex;
        gap: 10px;
        z-index: 5000;
        left: 20% !important
      }

      .slider-dots button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: 0.3s;
        left: 50% !important
      }

      .slider-dots button.active {
        background: #fff;
        transform: scale(1.2);
      }
    }