/* ===== MEMBERSHIP FORM FULL STYLE ===== */

body {
  font-family: Arial, sans-serif;
  background: #f3f5f7;
  margin: 0;
  padding: 20px;
}

/* Main container */
.container {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  max-width: 1000px;
  margin: auto;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

/* Header section */
.header {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.header img {
  width: 110px;
}

/* Section titles */
.section-title {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0a4f46;
  font-size: 18px;
  font-weight: bold;
}

/* Grid layout */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

/* Inputs */
input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

/* Table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.fee-table th {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 10px;
  text-align: left;
}

.fee-table td {
  border: 1px solid #cbd5e1;
  padding: 10px;
}

.total-row {
  background: #eef2f7;
  font-weight: bold;
}

/* Terms box */
.terms-box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Submit button */
.submit-btn {
  background: #2f6f44;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 25px;
}

.submit-btn:hover {
  background: #245c37;
}
