/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f3f9ff;
  color: #333;
  line-height: 1.6;
}

.sub-header {
  font-size: 16px;
  margin-top: 5px;
}


.fees-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.fees-container {
  background: white;
  max-width: 600px;
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.fees-container h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #004d80;
}

.intro {
  text-align: center;
  font-size: 15px;
  margin-bottom: 30px;
  color: #666;
}

.fee-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input,
select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

input:focus,
select:focus {
  outline: none;
  border-color: #007acc;
  background: #f0f9ff;
}

.submit-btn {
  background-color: #004d80;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #007acc;
}

/* Responsive */
@media (max-width: 600px) {
  .fees-container {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
  }
}
