.msg {
  font-size: 1em;
  font-weight: bold;
  margin: 0;
  padding-bottom: 5px;
  text-align: center;
}

.msg.success {
  color: green;
}

.msg.error {
  color: red;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .captcha-container img {
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .captcha-container input {
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .captcha-container button {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    background: #68abf3;
    color: #fff;
    cursor: pointer;
  }

  .captcha-container button:hover {
    background: #516984;
  }

#page {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;

  .page-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    h1 {
      font-size: 28px;
      text-align: center;
      color: #1c1c1c;
      border-bottom: 2px solid #888;
      padding-bottom: 6px;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 22px;
      margin-top: 40px;
      color: #1c1c1c;
      border-bottom: 1px solid #ccc;
      padding-bottom: 4px;
    }

    h3 {
      font-size: 18px;
      margin-top: 25px;
      color: #222;
    }

    p,
    li {
      font-size: 16px;
      margin-bottom: 12px;
    }

    ul {
      padding-left: 20px;
    }

    .contact a {
      color: #0078D7;
      text-decoration: none;
    }

    .contact a:hover {
      text-decoration: underline;
    }
  }

  .contact-us-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    h1 {
      font-size: 28px;
      text-align: center;
      color: #1c1c1c;
      border-bottom: 2px solid #888;
      padding-bottom: 6px;
      margin-bottom: 20px;
    }

    label {
      font-weight: bold;
      display: block;
      margin-bottom: 6px;
      margin-top: 12px;
    }

    input,
    textarea {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
    }

    button {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      background: #007BFF;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    button:hover {
      background: #0056b3;
    }

    #response {
      margin-top: 15px;
      font-weight: bold;
      text-align: center;
    }
  }
  .captcha-container img {
    margin-bottom: 15px;
  }

  .captcha-container button {
    margin-bottom: 15px;
  }

}