    body {
      font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
    }
    nav {
      background-color: #009fdb;
      padding: 12px 20px;
      text-align: center;
    }
    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
    }
    .container {
      max-width: 900px;
      margin: 30px auto;
      background-color: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
        .header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .header i {
      color: #007bff;
      margin-bottom: 10px;
      font-size: 40px;
    }
     .header-title {
      font-size: 24px;
      font-weight: bold;
      color: #007bff;
      line-height: 1.2;
    }
    .header-title span {
      display: block;
      color: #003366;
      font-size: 32px;
    }
    .header {
      text-align: center;
      margin-bottom: 30px;
    }
    .header h1 {
      color: #003366;
    }
    .header p {
      color: #555;
      margin-top: 10px;
    }
        h2 {
      text-align: center;
      color: #003366;
    }
    .cta-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .cta-grid a {
      flex: 1 1 280px;
      background: #009fdb;
      color: white;
      padding: 18px 24px;
      text-align: center;
      text-decoration: none;
      border-radius: 10px;
      font-weight: bold;
      transition: background 0.2s ease;
    }
    .cta-grid a:hover {
      background-color: #007bb8;
    }
    footer {
      text-align: center;
      padding: 15px;
      background-color: #f1f1f1;
      margin-top: 40px;
      font-size: 0.9em;
      color: #777;
    }
    @media (max-width: 768px) {
  .cta-grid a {
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.2;
    max-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
        }
    }