/* Basic styles for the BetterRelief website */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

a {
  color: #0b5ed7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

header.hero {
  background-color: #06357a;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

header.hero h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

header.hero .subheading {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

header.hero .hero-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background-color: #0b5ed7;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #06357a;
}

section {
  background-color: #fff;
  margin: 1rem 0;
  padding: 2rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h2 {
  margin-top: 0;
  color: #06357a;
}

.about p, .disclosure p {
  margin-bottom: 1rem;
}

.benefits {
  list-style: none;
  padding-left: 0;
}

.benefits li {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.benefits li::before {
  content: "\2022";
  color: #0b5ed7;
  position: absolute;
  left: 0;
  top: 0;
}

.how-it-works .steps {
  list-style: none;
  padding-left: 0;
  counter-reset: step-counter;
}

.how-it-works .steps li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.how-it-works .steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b5ed7;
}

.opt-in .opt-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.opt-in .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.opt-in .form-group input[type="text"],
.opt-in .form-group input[type="tel"],
.opt-in .form-group input[type="email"] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.opt-in .form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.opt-in .form-group.checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

footer {
  background-color: #06357a;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #e9ecef;
  margin: 0 0.25rem;
}

footer a:hover {
  text-decoration: underline;
}
