 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    body {
      background: #eef5fa;
      display: flex;
      justify-content: center;
      padding: 2rem 1rem;
    }

    .app-container {
      max-width: 1000px;
      width: 100%;
      background: #f9fcff;
      border-radius: 2rem;
      box-shadow: 0 20px 40px -12px rgba(0, 20, 40, 0.25);
      padding: 2rem 2rem 1.5rem;
      transition: all 0.2s;
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .brand-header {
      text-align: center;
      margin-bottom: 1.8rem;
    }

    .brand-header h1 {
      font-size: 2.2rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #0b1f2e;
      background: linear-gradient(145deg, #0b2a3b 0%, #1f3f54 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      padding: 0 1rem;
    }

    .brand-header .sub-head {
      color: #2a4b62;
      font-weight: 400;
      font-size: 1rem;
      border-top: 1px solid #cbdde9;
      padding-top: 0.5rem;
      margin-top: 0.3rem;
      opacity: 0.8;
      letter-spacing: 0.3px;
    }

    .section-card {
      background: white;
      border-radius: 28px;
      padding: 1.8rem 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 12px rgba(0, 30, 50, 0.04);
      border: 1px solid rgba(200, 220, 235, 0.3);
      transition: 0.2s;
    }

    .section-card.alt-bg {
      background: #f2f8fe;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #0b1f2e;
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
      border-left: 0px solid #2e7b9e;
      padding-left: 0.9rem;
    }

    .section-title.light {
      border-left-color: #8bb3cc;
    }

    .grid-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .grid-2col.image-left .image-col {
      order: -1;
    }

    .feature-list {
      list-style: none;
      padding: 0;
    }

    .feature-list li {
      display: flex;
      align-items: baseline;
      gap: 0.6rem;
      margin-bottom: 0.6rem;
      color: #1f3a4a;
      font-weight: 450;
    }

    .feature-list li::before {
      content: "▹";
      color: #2e7b9e;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .text-block {
      color: #1e3647;
      line-height: 1.6;
      font-size: 0.98rem;
    }

    .text-block strong {
      color: #0b2a3d;
      font-weight: 600;
    }

    .image-placeholder {
    
      border-radius: 24px;
     
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1a4057;
      font-weight: 400;
      font-size: 0.95rem;
      
      background-repeat: no-repeat;
      background-position: center 40%;
      background-size: 48px;
      padding-top: 0rem;
      border: 0px solid #b8d3e5;
      transition: 0.2s;
      
    }

    .image-placeholder img {
      width: 100%;
      
      object-fit: cover;
      border-radius: 24px;
    }

    .image-placeholder.large {
      height: 300px;
    }

    .contact-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #e6f0f7;
      padding: 0.5rem 1.2rem;
      border-radius: 60px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #0b2a3d;
      margin-top: 1rem;
      border: 1px solid #cbdde9;
      transition: 0.2s;
      text-decoration: none;
    }

    .contact-badge:hover {
      background: #d3e4f0;
      border-color: #8bb3cc;
      transform: translateY(-1px);
    }

    .button-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1.8rem 0 0.5rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      border: 1px solid #b6cfdf;
      padding: 0.6rem 1.8rem;
      border-radius: 60px;
      font-weight: 500;
      color: #0b2a3d;
      text-decoration: none;
      transition: 0.2s;
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
      font-size: 0.95rem;
    }

    .btn-primary {
      background: #0b1f2e;
      border-color: #0b1f2e;
      color: white;
      box-shadow: 0 6px 12px -8px rgba(10, 40, 60, 0.3);
    }

    .btn-primary:hover {
      background: #1d3e55;
      border-color: #1d3e55;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid #a5c0d4;
    }

    .btn-outline:hover {
      background: #e3eff8;
      border-color: #7fa3bb;
    }

    .btn img.icon {
      width: 22px;
      height: 22px;
      filter: brightness(0) invert(0);
    }

    .btn-primary img.icon {
      filter: brightness(0) invert(1);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem 2.5rem;
      padding: 1.2rem 0 0.5rem;
      border-top: 1px solid #d2e2ed;
      margin-top: 0.6rem;
      font-size: 0.85rem;
      color: #1f4057;
    }

    .footer-links a {
      color: #1f4057;
      text-decoration: none;
      border-bottom: 1px dotted transparent;
      transition: 0.15s;
      cursor: pointer;
      font-weight: 450;
    }

    .footer-links a:hover {
      border-bottom-color: #2e7b9e;
      color: #0f2d40;
    }

    .footer-copy {
     
    }

    .disclaimer-box {
      background: #eaf2f9;
      border-radius: 20px;
      padding: 1rem 1.6rem;
      font-size: 0.82rem;
      color: #1f4057;
      margin: 0.8rem 0 0.2rem;
      border-left: 0px solid #7fa3bb;
    }

    .disclaimer-box strong {
      color: #0b2a3d;
    }

    .badge-pill {
      background: #d7e7f2;
      border-radius: 40px;
      padding: 0.15rem 0.9rem;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      color: #1a435b;
      display: inline-block;
    }

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.25s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-card {
      background: white;
      max-width: 520px;
      width: 90%;
      border-radius: 36px;
      padding: 2rem 2.2rem 1.8rem;
      box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.5);
      transform: scale(0.96) translateY(12px);
      transition: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: 1px solid rgba(255,255,255,0.2);
    }

    .modal-overlay.active .modal-card {
      transform: scale(1) translateY(0);
    }

    .modal-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #0b1f2e;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .modal-card p {
      color: #1e3647;
      line-height: 1.6;
      font-size: 0.98rem;
      margin: 1rem 0 1.4rem;
    }

    .modal-card .btn-close-modal {
      background: #0b1f2e;
      border: none;
      color: white;
      padding: 0.6rem 2rem;
      border-radius: 60px;
      font-weight: 500;
      font-size: 0.95rem;
      cursor: pointer;
      transition: 0.15s;
      box-shadow: 0 6px 12px -8px rgba(0,0,0,0.2);
    }

    .modal-card .btn-close-modal:hover {
      background: #1d3e55;
    }

    .modal-card .modal-icon {
      font-size: 2rem;
    }

    .contact-block {
      margin-top: 1.2rem;
      padding-top: 1rem;
      border-top: 1px solid #dce9f2;
    }

    .contact-block .contact-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.5rem;
      color: #1f3a4a;
      font-size: 0.95rem;
    }

    .contact-block .contact-item a {
      color: #0b2a3d;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid transparent;
      transition: 0.15s;
    }

    .contact-block .contact-item a:hover {
      border-bottom-color: #2e7b9e;
    }

    @media (max-width: 700px) {
      .app-container { padding: 1rem; }
      .grid-2col { grid-template-columns: 1fr; gap: 1.2rem; }
      .grid-2col.image-left .image-col {
        order: 0;
      }
      .section-card { padding: 1.2rem; }
      .brand-header h1 { font-size: 1.8rem; }
      .footer-links { gap: 0.8rem; flex-direction: column; align-items: center; }
      .modal-card { padding: 1.5rem; }
    }