body {
  font-family: Arial, sans-serif;
  margin: 40px;
  background: #f9f9f9;
  color: #333;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}

table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

th, td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

th {
  background: #333;
  color: white;
}

tr:hover {
  background: #f1f1f1;
}

a {
  color: #0073e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h2 {
  text-align: center;
  margin-top: 50px;
}

.pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.plan {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.plan h3 {
  margin-bottom: 10px;
}

.plan p {
  font-size: 18px;
  margin-bottom: 20px;
}

.plan button {
  background: #0073e6;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.plan button:hover {
  background: #005bb5;
}

/* Popup styles */
.popup {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.popup-content {
  background: white;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
