#download-form {
  max-width: 450px;
  font-family: "Times New Roman", serif;
}

#download-form input,
#download-form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 6px;
}

#download-form button {
  background-color: #b5c1c9;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

#download-form button:hover {
  background-color: #a0adb6;
}
/* Align body text with logo heading */
.site-content, .entry-content, .page-content, .content-area, .container {
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* Optional: fine-tune paragraphs only */
p {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

/* Optional: remove excessive indent on hero area or banner */
.site-header, .hero, .page-header {
    padding-left: 40px;
    padding-right: 40px;
}
/* Restore labels for WordPress and WPForms */
.wp-block-form label,
.wpforms-form label {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 6px;
}
/* === GLOBAL FORM LABEL FIX === */
label,
.wp-block-form label,
.wpforms-form label,
form label,
input + label,
textarea + label {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #000 !important;
  font-size: 16px !important;
  margin-bottom: 6px !important;
  height: auto !important;
  overflow: visible !important;
  position: relative !important;
  text-indent: 0 !important;
  clip: auto !important;
  white-space: normal !important;
}

/* Extra: Unhide screen-reader-text class if theme hides it */
.screen-reader-text {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  white-space: normal !important;
  overflow: visible !important;
}
/* === FIX CHECKBOX VISIBILITY AND LABEL === */
input[type="checkbox"],
.wp-block-form input[type="checkbox"],
form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle;
}

/* Make sure checkbox label text is visible and styled */
input[type="checkbox"] + label,
form input[type="checkbox"] + label,
.wp-block-form input[type="checkbox"] + label {
  display: inline-block !important;
  color: #000 !important;
  font-size: 16px;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Remove any hiding of form elements */
.wp-block-form,
form {
  overflow: visible !important;
}
/* === Style all service cards === */
.service-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Stretch inner content and push button to bottom */
.service-card .uagb-ifb-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Align the Read More button at the bottom */
.service-card .wp-block-button {
  margin-top: auto;
}

/* Optional: Adjust button spacing */
.service-card .wp-block-button__link {
  margin-top: 16px;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
  .service-card {
    width: 100%;
  }
}