    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top right, rgba(214,180,90,0.10), transparent 30%),
        linear-gradient(180deg, #0b1828 0%, #10233b 100%);
      color: #f5f7fb;
      line-height: 1.7;
    }

    .container {
      width: 92%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero {
      padding: 90px 0 70px;
      text-align: center;
    }

    .hero-badge {
      display: inline-block;
      border: 1px solid rgba(214,180,90,0.55);
      color: #d6b45a;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 22px;
      background: rgba(255,255,255,0.03);
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 4.3rem);
      line-height: 1.1;
      color: #ffffff;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .hero p {
      max-width: 860px;
      margin: 0 auto 18px;
      font-size: 1.15rem;
      color: #dbe4f0;
    }

    .hero-cta {
      margin-top: 28px;
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 14px 24px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      transition: 0.25s ease;
    }

    .btn-gold {
      background: #d6b45a;
      color: #0b1828;
    }

    .btn-gold:hover {
      background: #e3c673;
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.22);
      color: #ffffff;
      background: rgba(255,255,255,0.03);
    }

    .btn-outline:hover {
      border-color: rgba(214,180,90,0.7);
      color: #d6b45a;
      transform: translateY(-2px);
    }

    .section {
      padding: 70px 0;
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: #ffffff;
      margin-bottom: 18px;
      text-align: center;
    }

    .section-subtitle {
      max-width: 860px;
      margin: 0 auto 42px;
      text-align: center;
      color: #d3dceb;
      font-size: 1.05rem;
    }

    .panel {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(214,180,90,0.22);
      border-radius: 22px;
      padding: 30px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.22);
      backdrop-filter: blur(4px);
    }

    .two-col {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 28px;
      align-items: stretch;
    }

    .two-col p {
      color: #e2e9f3;
      margin-bottom: 16px;
    }

    .highlight-box {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: linear-gradient(180deg, rgba(214,180,90,0.11), rgba(255,255,255,0.04));
    }

    .highlight-box h3 {
      color: #ffffff;
      font-size: 1.5rem;
      margin-bottom: 14px;
    }

    .highlight-box p {
      color: #e6edf7;
      margin-bottom: 14px;
    }

    .highlight-box strong {
      color: #d6b45a;
    }

    .functions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 24px;
    }

    .card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 20px;
      padding: 24px;
      transition: 0.25s ease;
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(214,180,90,0.5);
    }

    .card-number {
      display: inline-block;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(214,180,90,0.14);
      color: #d6b45a;
      text-align: center;
      line-height: 42px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .card h3 {
      color: #ffffff;
      margin-bottom: 12px;
      font-size: 1.3rem;
    }

    .card p {
      color: #dde6f1;
      margin-bottom: 12px;
      font-size: 0.98rem;
    }

    .label {
      color: #d6b45a;
      font-weight: 700;
    }

    .simple-message {
      text-align: center;
      font-size: 1.35rem;
      font-weight: 700;
      color: #ffffff;
      max-width: 960px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .simple-message span {
      color: #d6b45a;
    }

    .market-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 28px;
    }

    .bullet-list {
      list-style: none;
      margin-top: 14px;
    }

    .bullet-list li {
      margin-bottom: 10px;
      color: #e0e8f2;
      padding-left: 20px;
      position: relative;
    }

    .bullet-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #d6b45a;
      font-weight: 700;
    }

    .closing {
      text-align: center;
    }

    .closing h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: #ffffff;
      margin-bottom: 18px;
    }

    .closing p {
      color: #d8e1ed;
      max-width: 860px;
      margin: 0 auto 16px;
      font-size: 1.08rem;
    }

    .footer-note {
      margin-top: 22px;
      color: #d6b45a;
      font-weight: 700;
      font-size: 1rem;
    }

    @media (max-width: 980px) {
      .two-col,
      .functions-grid,
      .market-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 70px 0 50px;
      }

      .section {
        padding: 55px 0;
      }
    }
  html, body, #container
{
   width: 100%;
   height: 100%;
}
body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
#wb_Text1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text1 div
{
   text-align: left;
}
#wb_Text3 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text3 div
{
   text-align: left;
}
#wb_Image1
{
   vertical-align: top;
}
#Image1
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_Text4 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text4 div
{
   text-align: left;
}
#wb_Text5 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text5 div
{
   text-align: left;
}
#wb_Image4
{
   vertical-align: top;
}
#Image4
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#Shape1
{
   border-width: 0;
   vertical-align: top;
}
#wb_Text6 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text6 div
{
   text-align: left;
}
#wb_Line1
{
   font-size: 0;
}
#Line1
{
   border-width: 0;
   height: 9px;
   width: 1273px;
}
#MegaMenu1
{
   font-size: 0;
   list-style: none;
   margin: 0;
   padding: 0;
   width: 100%;
   margin: 0;
   text-align: left;
   font-family: Arial;
   font-weight: normal;
}
#MegaMenu1 li
{
   display: inline-block;
   font-size: 12px;
   margin: 0;
   padding: 0;
   position: relative;
}
#MegaMenu1 li a
{
   float: left;
}
#MegaMenu1 li .submenu
{
   position: absolute;
   right: 0;
   display: none;
   padding: 15px 15px 15px 15px;
   text-align: left;
   top: 0;
   z-index: 9999;
}
#MegaMenu1 li .submenu.show
{
   display: grid;
}
#MegaMenu1 li .submenu ul
{
   list-style: none;
   margin: 0;
   padding: 0;
}
#MegaMenu1 .submenu ul li
{
   width: 100%;
}
#MegaMenu1 .submenu ul li .heading
{
   display: block;
   color: #3588F0;
   font-weight: normal;
   font-size: 8px;
   font-style: normal;
   margin: 0;
   padding: 8px 0;
   text-decoration: none;
   text-transform: none;
   white-space: nowrap;
}
#MegaMenu1 .submenu ul li a
{
   display: block;
   float: none;
   height: auto;
   border: 1px solid transparent;
   border-radius: 0px;
   color: inherit;
   font-weight: normal;
   font-style: normal;
   padding: 8px 4px 8px 20px;
   text-decoration: none;
   text-transform: none;
   text-indent: 0;
   white-space: nowrap;
}
#MegaMenu1 .button
{
   cursor: pointer;
   position: relative;
   text-align: center;
   margin: 0 1px 0 0;
   outline: 0;
   padding: 6px 20px 6px 10px;
   color: #FFFFFF;
   background-color: #192635;
   background-image: none;
   border: 0px solid #192635;
   border-radius: 0px;
   font-weight: normal;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
}
#MegaMenu1 .button:hover, #MegaMenu1 .button.active
{
   background-color: #DAA520;
   background-image: none;
   border-color: #DAA520;
   color: #FFFFFF;
}
#MegaMenu1 .submenu
{
   background-color: #000000;
   background-image: none;
   border: 1px solid #000000;
   border-radius: 0px;
   color: #FFFFFF;
}
#MegaMenu1 .submenu a:hover, #MegaMenu1 .submenu a.active
{
   background-color: #000000;
   background-image: none;
   border: 1px solid #000000;
   color: #FFFFFF;
}
#MegaMenu1 li:nth-child(2) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(3) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(4) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(5) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(6) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(7) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(8) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(9) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(10) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li i
{
   font-size: 16px;
   width: 18px;
}
#MegaMenu1 .arrow
{
   margin-top: -8px;
   margin-left: 0;
   position: absolute;
   right: 1px;
   top: 50%;
   display: block;
   overflow: hidden;
   width: 16px;
   height: 16px;
}
#MegaMenu1 .bullet, #MegaMenu1 .icon
{
   left: 0px;
   margin-top: -8px;
   position: absolute;
   top: 50%;
   display: block;
   overflow: hidden;
   width: 16px;
   height: 16px;
}
#MegaMenu1-hamburger
{
   cursor: pointer;
   display: none;
   background-color: #192635;
   border: 0px solid #192635;
   padding: 9px 12px 9px 12px;
}
#MegaMenu1-hamburger .line
{
   width: 9px;
   height: 1px;
   background: #FFFFFF;
   display: block;
   margin: 1px auto;
}
#MegaMenu1-close
{
   display: none;
}
@media all and (max-width:300px) 
{
#MegaMenu1-hamburger
{
   display: inline-block;
}
#MegaMenu1 > li
{
   width: 100%;
}
#MegaMenu1 > li > a
{
   display: none;
}
#MegaMenu1-nav
{
   display: none;
   height: 100% !important;
   left: 0 !important;
   overflow-y: auto;
   position: fixed !important;
   top: 0 !important;
   width: 100% !important;
   z-index: 9998;
}
#MegaMenu1
{
   height: 100% !important;
   width: 100% !important;
}
#MegaMenu1 > li > div
{
   box-sizing: border-box;
   border-width: 0 0 1px 0 !important;
   display: inline-block !important;
   float: none;
   position: static !important;
   width: 100% !important;
}
#MegaMenu1 li .submenu ul, #MegaMenu1 li .submenu ul li
{
   width: 100% !important;
}
##MegaMenu1 .nav-link
{
   box-sizing: border-box;
   display: inline-block !important;
   float: none;
   position: static !important;
   width: 100% !important;
   padding: 9px 5px 9px 21px;
   text-align: left;
}
#MegaMenu1-close
{
   display: block;
   left: 0;
   pointer-events: none;
   position: fixed;
   text-align: right;
   top: 0;
   width: 100%;
   z-index: 9999;
}
#MegaMenu1-close a
{
   color: #FFFFFF;
   display: inline-block;
   font-size: 24px;
   font-weight: bold;
   padding: 10px 40px 10px 10px;
   pointer-events: all;
   text-decoration: none;
}
#wb_MegaMenu1.open
{
   z-index: 9998 !important
}
#wb_MegaMenu1.open #MegaMenu1-nav
{
   display: block !important;
}
.overflow-no-scroll
{
   overflow: hidden !important;
}
}
