/* Base Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f3f4f6;
  margin: 0;
  padding: 0;
  color: #333;
}

section {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}

.price {
  font-weight: normal;
  font-size: 14px;
  display: block;
  margin-top: 4px;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

thead th {
  color: white;
  padding: 20px;
  font-size: 18px;
}

tbody td {
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

tbody td:first-child {
  text-align: left;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9fafb;
}

/* Header Colors */
.basic-header {
  background-color: #3b82f6; /* Blue */
}

.pro-header {
  background-color: #10b981; /* Emerald */
}

.elite-header {
  background-color: #8b5cf6; /* Purple */
}

.ultimate-header {
  background-color: #f59e0b; /* Amber */
}

/* Buttons */
button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.basic-btn {
  background-color: #3b82f6;
}
.basic-btn:hover {
  background-color: #1d4ed8;
}

.pro-btn {
  background-color: #10b981;
}
.pro-btn:hover {
  background-color: #059669;
}

.elite-btn {
  background-color: #8b5cf6;
}
.elite-btn:hover {
  background-color: #7c3aed;
}

.ultimate-btn {
  background-color: #f59e0b;
}
.ultimate-btn:hover {
  background-color: #d97706;
}
