.whyus-page-container {
    background: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .whyus-page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
    line-height: 1.7;
    color: #333;
  }
  
  .whyus-page-section {
    margin-bottom: 3rem;
  }
  
  .whyus-page-section h2 {
    font-size: 1.8rem;
    color: #1e266d;
    margin-bottom: 1rem;
    border-left: 4px solid #1e266d;
    padding-left: 0.7rem;
  }
  
  .whyus-page-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .whyus-page-section ul {
    list-style: none;
    padding-left: 0;
  }
  
  .whyus-page-section ul li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
  }
  
  .whyus-page-section ul li::before {
    content: "✔";
    color: #1e266d;
    position: absolute;
    left: 0;
    font-size: 1rem;
  }
  
  .whyus-page-cta {
    text-align: center;
    background: #f4f7ff;
    padding: 3rem 2rem;
    border-radius: 10px;
  }
  
  .whyus-page-cta h2 {
    font-size: 2rem;
    color: #1e266d;
    margin-bottom: 1rem;
  }
  
  .whyus-page-cta p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .whyus-page-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #1e266d;
    border-radius: 30px;
    text-decoration: none;
    color: #1e266d;
    font-weight: bold;
    transition: 0.3s ease;
  }
  
  .whyus-page-btn:hover {
    background: #1e266d;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .whyus-page-section h2 {
      font-size: 1.5rem;
    }
  
    .whyus-page-content {
      padding: 1rem;
    }
  }