/* Use Google Font (optional, but matches the clean look) */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap'); */

/* Base typography */
html {
  height: 100%;
  margin: 0;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #000;
  background-color: white;
  line-height: 1.6;
}

/* Wrapper to ensure the footer stays at the bottom of the screen */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content should take up remaining space */
.content {
  flex: 1;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0a0a0a;
}

h1 {
  font-size: 2.25rem;
}

h6 {
  font-size: 1rem;
}

/* Paragraphs */
p,
label,
.form-check-label {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #000;
}

/* Form inputs */
input.form-control,
textarea.form-control,
select.form-select {
  border: 1px solid #333;
  border-radius: 0;
  font-size: 14px;
  padding: 0.75rem 1rem;
  box-shadow: none;
  background-color: #fff;
  color: #000;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-select:focus {
  border-color: #000;
  box-shadow: none;
  outline: none;
}

/* Floating labels */
.form-floating > label {
  font-size: 0.875rem;
  color: #000;
  font-weight: 500;
}

/* Checkboxes */
.form-check-input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 1px solid #000;
}

.form-check-label {
  font-weight: 500;
}

/* Nested list styling */
ul {
  padding-left: 1.5rem;
}
ul li {
  margin-bottom: 0.5rem;
}

/* Button styling */
.btn-primary,
button {
  background-color: #f25c39;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 10px;
}

.btn-primary:hover,
button:hover {
  background-color: #d94f2f;
}

/* Practice area section scroll */
.practice-areas-section .card-body {
  max-height: 755px;
  overflow-y: auto;
  padding-top: 5px;
}

/* Optional: reduce spacing for cleaner layout */
.mb-2 {
  margin-bottom: 0.5rem !important;
}