<style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f4f7fa;
      color: #333;
    }

    header {
      background: linear-gradient(to right, #2a2a72, #009ffd);
      color: white;
      text-align: center;
      padding: 2em 1em 2em;
    }

    header h1 {
      font-size: 2.5em;
      margin-bottom: 0.2em;
    }

    header p {
      font-size: 1.2em;
      font-weight: 300;
    }

    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3em 1em;
    }

    .form-section {
      display: flex;
      flex-wrap: wrap;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .info-content {
      flex: 1 1 50%;
      display: flex;
      flex-direction: column;
      
      padding: 2em;
    }

    /* New tp-caption block styling */
    .tp-caption h2.slice {
     
      font-size: 1.1em;
      color: #808080;
      margin-bottom: 1.5em;
      line-height: 1.5em;
		text-align: justify;
    }

    .why-choose {
      display: flex;
      flex-direction: column-reverse;
      align-items: flex-start;
      background-color: #f0f4ff;
      padding: 1em 1.5em;
      border-left: 5px solid #2a2a72;
      border-radius: 8px;
    }

    .why-choose h3 {
      margin-top: 1em;
      font-size: 1.2em;
      font-weight: bold;
      color: #2a2a72;
    }

    .why-choose p {
      margin: 0.3em 0;
      font-size: 1em;
    }

    .form-content {
      flex: 1 1 50%;
      padding: 0.5em;
    }

    .form-content h2 {
      font-size: 2em;
      color: #2a2a72;
      margin-bottom: 1em;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 0.1em;
    }

    input, textarea, button {
      padding: 1em;
      font-size: 1em;
      border-radius: 6px;
      border: 1px solid #ccc;
    }

    button {
      background-color: #2a2a72;
      color: white;
      border: none;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background-color: #1a1a5e;
    }

    .trust-section h2 {
      text-align: center;
      color: #2a2a72;
      font-size: 2em;
      margin-bottom: 2em;
    }

    .trust-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2em;
    }

    .trust-card {
      background: white;
      padding: 2em;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .trust-card img {
      width: 70px;
      margin-bottom: 1em;
    }

    .trust-card h3 {
      color: #2a2a72;
      margin-bottom: 0.5em;
    }

    .reviews-section h2 {
      text-align: center;
      font-size: 2em;
      color: #2a2a72;
      margin-bottom: 2em;
    }

    .reviews {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2em;
    }

    .review-card {
      background: white;
      padding: 2em;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      display: flex;
      align-items: flex-start;
      gap: 1em;
    }

    .review-card img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }

    .review-content {
      flex: 1;
    }

    .review-content p {
      margin-bottom: 0.5em;
    }

    .review-content strong {
      color: #2a2a72;
    }

    footer {
      background-color: #2a2a72;
      color: white;
      text-align: center;
      padding: 2em 1em;
      font-size: 0.95em;
    }

    @media (max-width: 768px) {
      .form-section {
        flex-direction: column;
      }

      .info-content {
        align-items: center;
        text-align: center;
      }

      .why-choose {
        align-items: center;
      }
    }
  </style>