/* Common styling for the static website */

/* Reset default margin/padding and define base font */
body {
  font-family: Arial, sans-serif;
  background: #f2f4f8;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Constrain the main content to a centered container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header bar styling */
header {
  background: #0a1f44; /* deep navy inspired by JAZtrades branding */
  color: #fff;
  padding: 15px 0;
}

header h1 {
  margin: 0;
  font-size: 24px;
  display: inline-block;
}

header nav {
  float: right;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

/* Main content panel */
main {
  background: #fff;
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 10px 16px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-secondary {
  display: inline-block;
  padding: 8px 14px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-secondary:hover {
  background: #fff;
  color: #0a1f44;
}

/* Footer styling */
footer {
  background: #0a1f44;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  margin-top: 20px;
}

/* Form elements */
.form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 15px;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="datetime-local"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Section spacing */
section {
  margin-bottom: 20px;
}

/* Agreement and details sections */
.agreement-section,
.signature-section,
.payment-options,
.confirmation-section,
.appointment-details {
  margin-top: 20px;
}

.agreement-section ul,
.payment-options ul {
  list-style: disc;
  margin-left: 20px;
}

/* Payment link style inside the payment page */
.payment-options .btn-primary {
  margin-top: 10px;
}