 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #1a202c;
      background: #f7fafc;
    }

    .header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 99999 !important;
      background-color: white !important;
    }

    .hero {
      /* background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%); */
      background: linear-gradient(135deg, #899efaff 0%, #05034eff 100%);
      color: white;
      padding: 175px 20px 120px;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 100px;
      background: #f7fafc;
      clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 100%);
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.15);
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 25px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    h1 {
      font-size: 56px;
      font-weight: 800;
      margin-bottom: 24px;
      line-height: 1.1;
      letter-spacing: -1px;
      color: white;
    }

    .hero-subtitle {
      font-size: 22px;
      opacity: 0.95;
      line-height: 1.6;
      margin-bottom: 35px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      color: #1e3a8a;
      padding: 18px 40px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 17px;
      transition: all 0.3s;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }

    .main-content {
      background: white;
      margin-top: -60px;
      position: relative;
      z-index: 2;
    }

    .content-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      padding: 60px 20px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 60px;
    }

    .primary-content {
      min-width: 0;
    }

     .section-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
      color: #1a202c;
      letter-spacing: -0.5px;
      padding-top: 20px;
    }

    .intro-text {
      font-size: 19px;
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .features-highlight {
      background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 100%);
      border-left: 5px solid #3b82f6;
      padding: 35px;
      border-radius: 12px;
      margin: 40px 0;
    }

    .features-highlight h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1e3a8a;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      color: #2d3748;
    }

    .feature-item::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: #3b82f6;
      color: white;
      border-radius: 50%;
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .services-section {
      margin-top: 60px;
    }

    .services-section h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 30px;
      color: #1a202c;
    }

    .services-list {
      display: grid;
      gap: 20px;
    }

    .service-item {
      background: #f8fafc;
      border: 2px solid #e2e8f0;
      padding: 25px;
      border-radius: 10px;
      transition: all 0.3s;
    }

    .service-item:hover {
      border-color: #3b82f6;
      background: white;
      box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
      transform: translateX(5px);
    }

    .service-item h4 {
      font-size: 19px;
      font-weight: 700;
      color: #1e3a8a;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .service-item p {
      color: #4a5568;
      font-size: 15px;
      line-height: 1.6;
    }

    .sidebar {
      position: sticky;
      top: 30px;
      height: fit-content;
    }

    .info-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid #e2e8f0;
    }

    .info-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
      padding-bottom: 20px;
      border-bottom: 2px solid #e2e8f0;
    }

    .info-card-icon {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: white;
    }

    .info-card-header h3 {
      font-size: 20px;
      font-weight: 700;
      color: #1a202c;
    }

    .stat-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      border-bottom: 1px solid #e2e8f0;
    }

    .stat-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .stat-label {
      font-size: 14px;
      color: #718096;
      font-weight: 500;
    }

    .stat-value {
      font-size: 14px;
      font-weight: 700;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .tag {
      padding: 8px 16px;
      background: #eff6ff;
      color: #1e40af;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid #dbeafe;
    }

    .team-list {
      list-style: none;
    }

    .team-list li {
      padding: 12px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: #4a5568;
      border-bottom: 1px solid #e2e8f0;
    }

    .team-list li:last-child {
      border-bottom: none;
    }

    .team-list li::before {
      content: '●';
      color: #3b82f6;
      font-size: 20px;
    }

    .cta-banner {
      /* background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%); */
      background: linear-gradient(135deg, #899efaff 0%, #05034eff 100%);
      padding: 80px 20px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    }

    .cta-content {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-banner h2 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
      color: white;
    }

    .cta-banner p {
      font-size: 20px;
      margin-bottom: 35px;
      opacity: 0.95;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: white;
      color: #1e3a8a;
      padding: 20px 45px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      transition: all 0.3s;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .cta-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    }

    @media (max-width: 1024px) {
      .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .sidebar {
        position: static;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: 40px;
      }

      .section-title {
        font-size: 32px;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding: 105px 20px 80px;
      }

      h1 {
        font-size: 32px;
      }

      .hero-subtitle {
        font-size: 18px;
      }

      .section-title {
        font-size: 28px;
      }

      .cta-banner h2 {
        font-size: 32px;
      }
    }