  body {font-family: Arial, sans-serif;margin: 0;background: #f9f9f9;color: #333;}
  header {position: relative;color: white; text-align: center;padding: 80px 20px 100px 20px;background: linear-gradient(to right, rgba(0,120,215,0.9), rgba(0,50,100,0.9));overflow: hidden;}
  #canvas-bg {position: absolute;top: 0;left: 0;width: 100%;height: 100%;pointer-events: none;z-index: 0;}
  header img,
  header h1,
  header p {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
  }

  header img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin-bottom: 15px;
    animation: fadeUp 1s ease forwards 0.2s;
  }

  header h1 {
    font-size: 2.5rem;
    margin: 0;
    animation: fadeUp 1s ease forwards 0.6s;
  }

  header p {
    font-size: 1.2rem;
    margin-top: 10px;
    animation: fadeUp 1s ease forwards 1s;
  }

  header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }section {max-width: 1000px;margin: auto;padding: 40px 20px;}
  .plans {display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 20px;margin-top: 30px;}
  .plan {background: white;padding: 20px;border-radius: 10px;box-shadow: 0 4px 10px rgba(0,0,0,0.1);text-align: center;}
  .plan h2 {margin: 0;font-size: 1.5rem;color: #0078d7;}
  .price {font-size: 1.8rem;font-weight: bold;margin: 10px 0;}
  ul {list-style: none;padding: 0;text-align: left;font-size: 0.95rem;}
  ul li {margin: 8px 0;padding-left: 20px;position: relative;}
  ul li::before {content: "✔";position: absolute;left: 0;color: #0078d7;}
  .cta {text-align: center;margin-top: 40px;}
  .cta a {background: #0078d7;color: white;padding: 12px 25px;border-radius: 5px;text-decoration: none;font-size: 1.1rem;}
  footer {background: #222;color: white;text-align: center;padding: 15px 10px;font-size: 0.9rem;}
  table {width: 100%;border-collapse: collapse;text-align: center;margin-bottom: 40px;}
  thead tr {background: #0078d7;color: white;}
  th, td {padding: 10px;border: 1px solid #ddd;}
  td a {color: #0078d7;text-decoration: none;font-weight: bold;font-size: 0.95rem;}
  td a:hover {text-decoration: underline;}
  .double-table {display: grid;grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));gap: 20px;}

  /* Modal Styles */
  .modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }

  .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
  }

  .modal-header {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #0078d7;
  }

  .close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
  }

  .close-btn:hover {
    color: #000;
  }

  #purchaseForm input[type=text],
  #purchaseForm input[type=email],
  #purchaseForm select,
  #purchaseForm textarea {
    width: 100%;
    padding: 8px 6px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }

  /* Error highlight */
  #purchaseForm input.error,
  #purchaseForm select.error {
    border-color: red;
  }

  #purchaseForm button {
    background-color: #0078d7;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }

  #purchaseForm button:hover {
    background-color: #005fa3;
  }

  #formResponse {
    font-weight: bold;
    margin-top: 10px;
  }
  
.plan .buy-btn {
  margin-top: 15px;
  background: #0078d7;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.plan .buy-btn:hover {
  background: #005fa3;
}