/* Hero Section */
.hero {
  background: #cce0ff;
  padding: 30px 20px;
  text-align: center;
}
  

.hero h1 {
  font-size: 28px;
  color: #004080;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  color: #333;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 20px;
}

header h1 {
  font-size: 24px;
}

header p {
  font-size: 15px;
  color: #555;
}

.top-buttons {
  margin-top: 10px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

button.active {
  background-color: #004080;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.hidden {
  display: none;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  background: #f9f9f9;
}

.card h3 {
  color: #333;
}

.center {
  text-align: center;
  margin: 20px 0;
}

.membership-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.membership-table th, .membership-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.membership-table th {
  background: #f1f1f1;
}

.apply-now {
  margin-top: 20px;
  font-size: 15px;
}

.apply-now a {
  color: #007bff;
  text-decoration: none;
}

#membershipForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: auto;
}

input, select, textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#confirmationSection {
  text-align: center;
  margin-top: 50px;
}
