 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #f9fafc;
      color: #0b1a33;
      line-height: 1.6;
      padding: 0 0 100px 0;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    header {
      background: linear-gradient(135deg, #0b1f4a 0%, #1b3a7a 50%, #142d66 100%);
      color: white;
      padding: 2.5rem 1.5rem 3rem;
      text-align: center;
      border-bottom: 6px solid #f5b81b;
      position: relative;
      overflow: hidden;
    }

    header::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .headerContent {
      position: relative;
      z-index: 2;
    }

    .logo {
      font-size: 3.2rem;
      font-weight: 800;
      letter-spacing: 6px;
      background: linear-gradient(135deg, #f5b81b, #f7d875);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(245, 184, 27, 0.2);
      margin-bottom: 0.5rem;
    }

    header h1 {
      font-size: 2.5rem;
      font-weight: 600;
      margin: 0.5rem 0 0.2rem;
      letter-spacing: -0.02em;
    }

    .subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 780px;
      margin: 0.8rem auto 1.5rem;
      font-weight: 300;
      color: #e0edff;
    }

    .flags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 1.8rem;
    }

    .flag {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(4px);
      padding: 0.5rem 1.8rem 0.5rem 1.2rem;
      border-radius: 60px;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .flag img {
      width: 36px;
      height: 24px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .flag span {
      font-weight: 500;
      font-size: 1rem;
    }

    .section {
      background: white;
      border-radius: 2rem;
      padding: 2.5rem 2rem;
      margin: 2.5rem 0;
      box-shadow: 0 8px 30px rgba(0, 20, 50, 0.06);
      transition: transform 0.2s ease;
    }

    .section:hover {
      transform: translateY(-4px);
    }

    .section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: #0b1f4a;
      border-bottom: 3px solid #f5b81b;
      padding-bottom: 0.6rem;
    }

    .section h2 i {
      color: #f5b81b;
      font-size: 1.8rem;
    }

    .highlight {
      font-weight: 700;
      color: #1b4a8a;
      background: linear-gradient(to right, #eef4ff, #ffffff);
      padding: 0.1rem 0.6rem;
      border-radius: 12px;
    }

    .imagePlaceholder {
      margin: 1.8rem 0 0.5rem;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .imagePlaceholder img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
    }

    .imagePlaceholder img:hover {
      transform: scale(1.01);
    }

    .cardGrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0 1rem;
    }

    .card {
      background: #f8faff;
      padding: 1.8rem 1.2rem;
      border-radius: 1.8rem;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
      border: 1px solid #eef3fa;
      transition: all 0.25s ease;
      text-align: center;
    }

    .card:hover {
      background: white;
      border-color: #f5b81b;
      box-shadow: 0 16px 40px -12px rgba(0, 32, 64, 0.12);
      transform: translateY(-6px);
    }

    .card h3 {
      font-size: 1.3rem;
      margin-bottom: 0.75rem;
      color: #0b1f4a;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .card h3 i {
      color: #f5b81b;
      font-size: 1.4rem;
    }

    .card p {
      color: #1e3a5f;
      font-size: 0.98rem;
    }

    .testimonialPremiumCard {
      background: linear-gradient(145deg, #ffffff 0%, #f2f6fe 100%);
      border-radius: 2.5rem;
      padding: 2.5rem 2.2rem;
      margin: 2.5rem 0;
      border-left: 0px solid #f5b81b;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
      transition: all 0.2s;
    }

    .testimonialPremiumCard:hover {
      box-shadow: 0 20px 48px -12px rgba(0, 20, 60, 0.12);
    }

    .testimonialPremiumCard img {
      float: left;
      margin-right: 1.5rem;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      object-fit: cover;
      border: 4px solid #f5b81b;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .testimonialPremiumCard h3 {
      font-size: 1.6rem;
      margin-bottom: 0.25rem;
      color: #0b1f4a;
    }

    .testimonialPremiumCard h3 i {
      color: #f5b81b;
      margin-right: 0.5rem;
    }

    .testimonialPremiumCard p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #1f3b5c;
      margin-top: 0.2rem;
    }

    .cta {
      background: linear-gradient(135deg, #0b1f4a 0%, #1b3a7a 100%);
      color: white;
      border-radius: 3rem;
      padding: 3rem 2rem;
      text-align: center;
      margin: 3.5rem 0 2rem;
      box-shadow: 0 18px 40px rgba(11, 31, 74, 0.25);
    }

    .cta h2 {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .cta p {
      font-size: 1.15rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto 2rem;
    }

    .btnCtaGolden {
      display: inline-block;
      background: linear-gradient(135deg, #f5b81b, #e6a017);
      color: #0b1f4a;
      font-weight: 700;
      font-size: 1.6rem;
      padding: 0.9rem 3rem;
      border-radius: 60px;
      text-decoration: none;
      box-shadow: 0 12px 30px rgba(245, 184, 27, 0.35);
      transition: all 0.25s ease;
      letter-spacing: 0.5px;
    }

    .btnCtaGolden:hover {
      background: linear-gradient(135deg, #f7c84a, #d99c12);
      transform: scale(1.03);
      box-shadow: 0 18px 40px rgba(245, 184, 27, 0.45);
      color: #0b1f4a;
    }

    .floatingInvestButton {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 40px);
      max-width: 600px;
      z-index: 1000;
      text-align: center;
      font-size: 1.8rem;
      font-weight: 700;
      padding: 1rem 1.5rem;
      background: linear-gradient(135deg, #f5b81b, #d99c12);
      color: #0b1f4a;
      border: none;
      border-radius: 80px;
      box-shadow: 0 12px 40px rgba(245, 184, 27, 0.5);
      text-decoration: none;
      transition: all 0.2s ease;
      letter-spacing: 0.5px;
    }

    .floatingInvestButton:hover {
      background: linear-gradient(135deg, #f7c84a, #c98f0e);
      transform: translateX(-50%) scale(1.02);
      box-shadow: 0 20px 50px rgba(245, 184, 27, 0.6);
      color: #0b1f4a;
    }

    footer {
      text-align: center;
      padding: 2.5rem 1rem 1rem;
      color: #3a5478;
      border-top: 1px solid #dce4f0;
      margin-top: 2rem;
      font-size: 0.95rem;
    }

    footer p {
      margin: 0.25rem 0;
    }

    .footerLegal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem 2.5rem;
      margin-top: 1.2rem;
      font-size: 0.9rem;
    }

    .footerLegal a {
      color: #1b4a8a;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px dotted #b0c8e5;
      cursor: pointer;
    }

    .footerLegal a:hover {
      color: #f5b81b;
      border-bottom-color: #f5b81b;
    }

    .legalModal {
      display: none;
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }

    .legalModal.active {
      display: flex;
    }

    .legalModalContent {
      background: white;
      max-width: 700px;
      width: 92%;
      max-height: 80vh;
      overflow-y: auto;
      padding: 2.5rem 2rem;
      border-radius: 2rem;
      box-shadow: 0 30px 60px rgba(0,0,0,0.3);
      position: relative;
    }

    .legalModalContent h2 {
      font-size: 1.8rem;
      color: #0b1f4a;
      border-bottom: 3px solid #f5b81b;
      padding-bottom: 0.5rem;
      margin-bottom: 1.2rem;
    }

    .legalModalContent p {
      margin-bottom: 1rem;
      color: #1f3b5c;
    }

    .legalModalContent .closeLegal {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2rem;
      cursor: pointer;
      color: #0b1f4a;
      background: none;
      border: none;
      line-height: 1;
    }

    .legalModalContent .closeLegal:hover {
      color: #f5b81b;
    }

    .statsGrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0 1rem;
    }

    .statItem {
      background: #f8faff;
      padding: 1.5rem 0.5rem;
      border-radius: 1.8rem;
      text-align: center;
      border: 1px solid #eef3fa;
    }

    .statItem .number {
      font-size: 2.2rem;
      font-weight: 800;
      color: #0b1f4a;
    }

    .statItem .label {
      color: #3a5478;
      font-size: 0.9rem;
      margin-top: 0.2rem;
    }

    .riskWarningBlock {
      background: #fff5f5;
      border: 2px solid #cc0000;
      border-radius: 2rem;
      padding: 2rem 2rem;
      margin: 2.5rem 0 1.5rem;
      color: #990000;
      box-shadow: 0 8px 24px rgba(204, 0, 0, 0.08);
    }

    .riskWarningBlock h2 {
      color: #b30000;
      font-size: 1.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-bottom: 3px solid #cc0000;
      padding-bottom: 0.6rem;
      margin-bottom: 1.2rem;
    }

    .riskWarningBlock h2 i {
      color: #cc0000;
    }

    .riskWarningBlock p {
      margin-bottom: 1rem;
      font-weight: 500;
      color: #990000;
    }

    .riskWarningBlock strong {
      color: #b30000;
    }

    @media (max-width: 700px) {
      header h1 {
        font-size: 1.8rem;
      }
      .logo {
        font-size: 2.5rem;
      }
      .section {
        padding: 1.8rem 1.2rem;
      }
      .testimonialPremiumCard img {
        float: none;
        display: block;
        margin: 0 auto 1.2rem;
      }
      .testimonialPremiumCard {
        text-align: center;
      }
      .flags {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
      }
      .cta h2 {
        font-size: 1.8rem;
      }
      .floatingInvestButton {
        font-size: 1.3rem;
        padding: 0.9rem 1rem;
      }
      .footerLegal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .riskWarningBlock {
        padding: 1.5rem 1rem;
      }
    }

    .gradientGoldText {
      background: linear-gradient(135deg, #f5b81b, #d99c12);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }