.reg-hero {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reg-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  letter-spacing: 1px;
}

.reg-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 400;
}

.reg-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s ease;
}

.reg-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.reg-breadcrumb .divider {
  opacity: 0.6;
}

.reg-breadcrumb .active {
  opacity: 1;
  font-weight: 500;
}

.reg-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 3rem 5rem;
}

.reg-fee-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

.reg-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.reg-info-subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.3rem;
}

.reg-info-note {
  font-size: 0.95rem;
  font-style: italic;
  color: #444;
  margin-bottom: 2rem;
}

/* Fee Table */
.reg-table-wrap {
  overflow-x: auto;
  margin-bottom: 3rem;
}

.reg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.reg-table th,
.reg-table td {
  border: 1px solid #ddd;
  padding: 0.8rem 1rem;
  text-align: center;
  vertical-align: middle;
}

.reg-table thead th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.reg-table thead th.col-group {
  border-bottom: none;
}

.reg-table thead th.col-sub {
  font-size: 0.85rem;
  font-weight: 500;
}

.reg-table tbody td {
  color: #333;
}

.reg-table tbody td:first-child {
  font-weight: 600;
  text-align: left;
  background-color: #f9f9f9;
}

.reg-table tbody td:nth-child(2) {
  font-style: italic;
  text-align: center;
}

/* Bank Account Details */
.reg-bank-section {
  margin-top: 3rem;
  text-align: center;
}

.reg-bank-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.reg-bank-subtext {
  font-size: 0.95rem;
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 2rem;
}

.reg-bank-card {
  background: #f8f9fc;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.reg-bank-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.reg-bank-qr-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.reg-bank-qr-item {
  text-align: center;
}

.reg-bank-qr-item img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.5rem;
  background: #fff;
}

.reg-bank-qr-item p {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

.reg-bank-qr-or {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}

.reg-bank-details-table {
  width: 100%;
  max-width: 700px;
  margin: 1.5rem auto 0;
  border-collapse: collapse;
}

.reg-bank-details-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.reg-bank-details-table td:first-child {
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.reg-bank-details-table td:last-child {
  text-align: right;
  color: #444;
}

.reg-bank-warning {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-top: 1.2rem;
  font-weight: 500;
}

/* Register Payment CTA */
.reg-payment-cta {
  background: #f8f9fc;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto 3rem;
  text-align: center;
}

.reg-payment-cta p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.reg-payment-btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 160, 255, 0.25);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.reg-payment-btn:hover {
  background-color: #0f45a2;
  box-shadow: 0 6px 15px rgba(0, 160, 255, 0.35);
  transform: translateY(-1px);
}

.reg-payment-cta .reg-support {
  font-size: 0.9rem;
  color: #666;
}

.reg-payment-cta .reg-support a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.reg-payment-cta .reg-support a:hover {
  text-decoration: underline;
}

/* Info Cards */
.reg-info-card {
  background: #f8f9fc;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.reg-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-style: italic;
}

.reg-info-card ol {
  padding-left: 1.5rem;
  margin: 0;
}

.reg-info-card ol li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.reg-info-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.reg-info-card ul li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.reg-info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.reg-info-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .reg-hero h1 {
    font-size: 2rem;
  }
  .reg-container {
    padding: 2rem 1rem 4rem;
  }
  .reg-fee-heading {
    font-size: 1.4rem;
  }
  .reg-table {
    font-size: 0.8rem;
  }
  .reg-table th,
  .reg-table td {
    padding: 0.5rem 0.4rem;
  }
  .reg-bank-qr-row {
    flex-direction: column;
  }
  .reg-info-card {
    padding: 1.5rem;
  }
}
