
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Cambria', sans-serif;
      background-color: #fafafa;
      color: #333;
      line-height: 1.6;
    }
    .container {
      max-width: 1200px;
      margin: 50px auto;
      padding: 40px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    h1 {
      font-size: 40px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 20px;
      color: #006e61;
    }
    h2 {
      font-size: 28px;
      font-weight: 600;
      color: #006e61;
      margin-bottom: 15px;
    }
    p, ul {
      font-size: 16px;
      line-height: 1.8;
      color: #666;
      margin-bottom: 20px;
    }
    ul {
      list-style: none;
    }
    .cta-button {
      background-color: #006e61;
      color: #fff;
      padding: 15px 30px;
      font-size: 18px;
      text-decoration: none;
      border-radius: 30px;
      display: inline-block;
      transition: background-color 0.3s ease;
      text-align: center;
      margin-top: 20px;
    }
    .cta-button:hover {
      background-color: #004a41;
    }
    .important-note {
      font-weight: bold;
      color: #e63946;
    }
    .row {
      display: flex;
      gap: 30px;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .col {
      flex: 1 1 calc(33.33% - 20px);
      padding: 15px;
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .col h3 {
      font-size: 20px;
      font-weight: 600;
      color: #006e61;
      margin-bottom: 10px;
    }
    .col p {
      font-size: 14px;
      color: #666;
    }
    .highlight {
      color: #fff;
      background-color: #e63946;
      font-weight: bold;
      padding: 5px 15px;
      border-radius: 5px;
    }
    @media (max-width: 768px) {
      .row {
        flex-direction: column;
      }
      .col {
        flex: 1 1 100%;
      }
    }
  