/* Fixed Banner */
.banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* above all content */
  background-color: #292627;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner img {
  width: 157px;
  height: 33px;
  object-fit: contain;
}

/* Base Layout */
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
  padding-top: 76px;  /* room for fixed banner */
  padding-bottom: 80px; /* room for fixed callout */
}

/* Main Container */
.container {
  max-width: 700px;
  margin: 24px auto 40px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

/* Text & Headings */
.container h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.container p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.container ul {
  margin: 20px 0 30px 24px;
  padding-left: 0;
}

.container ul li {
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Form Controls */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}

/* Buttons */
.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

button {
  font-weight: bold;
  font-size: 14px;
  color: #292627;
  background-color: transparent;
  border: 2px solid #292627;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}

button:hover:not(:disabled) {
  background-color: #292627;
  color: white;
}

button:disabled {
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
  background-color: transparent;
}

/* Fixed Callout Footer */
.callout {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #292627;
  color: #ffffff;
  text-align: center;
  padding: 16px 20px;
  font-size: 16px;
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.callout p {
  margin: 0;
  line-height: 1.6;
}

.callout a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

.callout a:hover {
  color: #dddddd;
  text-decoration: none;
}
