/* ============================================
   MIKE SNAPP - LANDING PAGES
   Styles for landing page components
   Uses site color palette and typography
   ============================================ */

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1a2a4a;
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-dark {
  background: linear-gradient(135deg, #1a2a4a 0%, #2c3e50 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.hero-dark h1 {
  font-family: 'latoblack', sans-serif;
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
}
.hero-dark .subheadline {
  font-family: 'latobold', sans-serif;
  font-size: 1.4em;
  color: #a1c057;
  margin-bottom: 20px;
}
.hero-dark p {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.6;
}
.hero-dark .btn-cta,
.btn-cta {
  background: #a1c057;
  color: #fff;
  font-family: 'latobold', sans-serif;
  font-size: 1.3em;
  padding: 15px 35px;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hero-dark .btn-cta:hover,
.btn-cta:hover {
  background: #8aaa45;
  color: #fff;
  text-decoration: none;
}
.hero-dark .secondary-cta {
  display: block;
  margin-top: 15px;
  font-size: 1em;
}
.hero-dark .secondary-cta a {
  color: #a1c057;
}

/* Urgent Hero (24-hour page) */
.hero-urgent {
  background: linear-gradient(135deg, #1a2a4a 0%, #2c3e50 100%);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.hero-urgent h1 {
  font-family: 'latoblack', sans-serif;
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
}
.hero-urgent .subheadline {
  font-family: 'latobold', sans-serif;
  font-size: 1.4em;
  color: #a1c057;
  margin-bottom: 20px;
}
.hero-urgent p {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.6;
}
.hero-urgent .btn-cta {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(161, 192, 87, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(161, 192, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(161, 192, 87, 0); }
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  background: #a1c057;
  padding: 18px 0;
  color: #fff;
}
.trust-badges .badge-item {
  text-align: center;
  padding: 8px 10px;
}
.trust-badges .badge-item i {
  font-size: 1.6em;
  margin-bottom: 6px;
}
.trust-badges .badge-item strong {
  font-family: 'latobold', sans-serif;
  font-size: 1.1em;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: 50px 0;
}
.content-section.bg-white {
  background: #fff;
}
.content-section.bg-gray {
  background: #f5f5f5;
}
.content-section.bordered {
  border-top: 8px solid #a1c057;
  border-bottom: 8px solid #a1c057;
}
.content-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 20px;
}
.content-section .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  color: #555;
}
.content-section p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}
.content-section h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.3em;
  color: #1a2a4a;
  margin: 20px 0 10px;
}

/* ============================================
   FEATURE BOXES
   ============================================ */
.feature-boxes {
  padding: 50px 0;
  background: #f5f5f5;
}
.feature-boxes h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 15px;
}
.feature-boxes > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.05em;
  color: #555;
}
.feature-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 4px solid #a1c057;
  padding: 25px;
  margin-bottom: 25px;
  min-height: 180px;
}
.feature-box h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.2em;
  color: #1a2a4a;
  margin: 0 0 12px;
}
.feature-box p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 1em;
}

/* Equal height rows */
.equal-height {
  display: flex;
  flex-wrap: wrap;
}
.equal-height > [class*='col-'] {
  display: flex;
}
.equal-height .feature-box,
.equal-height .service-box,
.equal-height .payment-option {
  width: 100%;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: 50px 0;
  background: #4b4b4b;
  color: #fff;
}
.process-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
}
.process-section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ccc;
  font-size: 1.05em;
}
.process-section .row {
  display: flex;
  flex-wrap: wrap;
}
.process-section .row > [class*='col-'] {
  display: flex;
}
.process-step {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.05);
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid #a1c057;
}
.process-step .step-number {
  font-family: 'latobold', sans-serif;
  color: #a1c057;
  font-size: 0.9em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-step h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.2em;
  color: #fff;
  margin: 0 0 10px;
}
.process-step p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Process steps in light sections */
.content-section .process-step,
.bg-gray .process-step,
.bg-white .process-step {
  background: #fff;
}
.content-section .process-step h3,
.bg-gray .process-step h3,
.bg-white .process-step h3 {
  color: #1a2a4a;
}
.content-section .process-step p,
.bg-gray .process-step p,
.bg-white .process-step p {
  color: #555;
}

/* ============================================
   FAQ SECTION & ACCORDION
   ============================================ */
.faq-section {
  padding: 50px 0;
  background: #fff;
}
.faq-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 15px;
}
.faq-section .subhead {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
  font-size: 1.05em;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  margin-bottom: 12px;
  background: #fff;
}
.faq-item:hover {
  border-color: #a1c057;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'latobold', sans-serif;
  font-size: 1.05em;
  color: #1a2a4a;
}
.faq-question:hover {
  background: #f9f9f9;
}
.faq-question span {
  flex: 1;
  padding-right: 15px;
}
.faq-question svg,
.faq-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-question svg path,
.faq-icon path {
  fill: #a1c057;
}
.faq-item.active .faq-question svg,
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 20px 20px;
  color: #555;
  line-height: 1.7;
  font-size: 1em;
}

/* ============================================
   AREAS SERVED
   ============================================ */
.areas-section {
  padding: 50px 0;
  background: #f5f5f5;
  border-top: 8px solid #a1c057;
}
.areas-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 25px;
}
.areas-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.areas-list span {
  display: inline-block;
  background: #fff;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 3px;
  font-size: 0.95em;
  color: #555;
  border: 1px solid #e0e0e0;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, #a1c057 0%, #8aaa45 100%);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.final-cta h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  margin-bottom: 15px;
}
.final-cta p {
  font-size: 1.1em;
  max-width: 650px;
  margin: 0 auto 25px;
}
.final-cta .btn-cta {
  background: #1a2a4a;
}
.final-cta .btn-cta:hover {
  background: #0f1a2e;
}
.final-cta .availability {
  margin-top: 12px;
  font-size: 1em;
  opacity: 0.9;
}

/* Urgent CTA (24-hour page) */
.final-cta.urgent {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}
.final-cta.urgent .btn-cta {
  background: #fff;
  color: #c0392b;
}
.final-cta.urgent .btn-cta:hover {
  background: #f8f8f8;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  padding: 50px 0;
  background: #fff;
}
.contact-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 25px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form label {
  font-family: 'latobold', sans-serif;
  color: #1a2a4a;
  margin-bottom: 5px;
  display: block;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1em;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a1c057;
  outline: none;
}
.contact-form button {
  background: #a1c057;
  color: #fff;
  font-family: 'latobold', sans-serif;
  font-size: 1.1em;
  padding: 14px 30px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
}
.contact-form button:hover {
  background: #8aaa45;
}

/* ============================================
   ADDITIONAL COMPONENTS
   ============================================ */

/* Checklist Items */
.checklist-section {
  padding: 50px 0;
  background: #fff;
}
.checklist-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 15px;
}
.checklist-section .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.05em;
  color: #555;
}
.checklist-item {
  background: #f9f9f9;
  border-left: 4px solid #a1c057;
  padding: 20px 25px;
  margin-bottom: 15px;
}
.checklist-item h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.15em;
  color: #1a2a4a;
  margin: 0 0 8px;
}
.checklist-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 50px 0;
  background: #f5f5f5;
  border-top: 8px solid #a1c057;
  border-bottom: 8px solid #a1c057;
}
.about-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 25px;
}
.about-section p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555;
  max-width: 850px;
  margin: 0 auto 15px;
  text-align: center;
}

/* Services Grid */
.services-section {
  padding: 50px 0;
  background: #fff;
}
.services-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 30px;
}
.service-box {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-top: 4px solid #a1c057;
  padding: 25px;
  margin-bottom: 25px;
  min-height: 180px;
}
.service-box h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.15em;
  color: #1a2a4a;
  margin-bottom: 12px;
}
.service-box p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Questions Section */
.questions-section {
  padding: 50px 0;
  background: #f5f5f5;
}
.questions-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 15px;
}
.questions-section .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.05em;
  color: #555;
}
.questions-list {
  background: #fff;
  padding: 25px;
  border-left: 4px solid #a1c057;
}
.questions-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.questions-list ul li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.05em;
  color: #555;
  padding-left: 25px;
  position: relative;
}
.questions-list ul li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: #a1c057;
  font-weight: bold;
}
.questions-list ul li:last-child {
  border-bottom: none;
}
.questions-list p {
  margin-top: 18px;
  font-size: 1.05em;
  color: #555;
}
.questions-list a {
  color: #a1c057;
  font-weight: bold;
}

/* Action Section (24-hour page) */
.action-section {
  padding: 50px 0;
  background: #a1c057;
  color: #fff;
}
.action-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
}
.action-section .lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.05em;
}
.action-step {
  background: rgba(255,255,255,0.15);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #fff;
}
.action-step h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.15em;
  margin: 0 0 8px;
  color: #fff;
}
.action-step p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.6;
}

/* Meaning Box (24-hour page) */
.meaning-box {
  background: #1a2a4a;
  color: #fff;
  padding: 25px;
  margin-top: 25px;
}
.meaning-box h3 {
  color: #a1c057;
  font-family: 'latobold', sans-serif;
  margin: 0 0 15px;
}
.meaning-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.meaning-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-left: 25px;
  position: relative;
}
.meaning-box ul li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #a1c057;
  font-weight: bold;
}
.meaning-box ul li:last-child {
  border-bottom: none;
}

/* Payment Options */
.payment-options {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
}
.payment-options > [class*='col-'] {
  display: flex;
}
.payment-option {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 4px solid #a1c057;
  padding: 25px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.payment-option h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.15em;
  color: #1a2a4a;
  margin: 0 0 12px;
}
.payment-option p {
  color: #555;
  margin: 0;
}

/* Payment Logos */
.payment-logos {
  text-align: center;
  margin-top: 25px;
  padding: 18px;
  background: #f9f9f9;
  border-radius: 3px;
}
.payment-logos span {
  display: inline-block;
  margin: 0 12px;
  font-family: 'latobold', sans-serif;
  color: #555;
}

/* Why Section */
.why-section {
  padding: 50px 0;
  background: #4b4b4b;
  color: #fff;
}
.why-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}
.why-section p {
  font-size: 1.05em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 15px;
  text-align: center;
  color: #ccc;
}

/* Expect Items */
.expect-item {
  background: #f9f9f9;
  border-left: 4px solid #a1c057;
  padding: 20px 25px;
  margin-bottom: 15px;
}
.expect-item h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.15em;
  color: #1a2a4a;
  margin: 0 0 8px;
}
.expect-item p {
  color: #555;
  margin: 0;
}

/* Location Components (jail page) */
.location-box {
  background: #fff;
  border: 2px solid #a1c057;
  border-radius: 5px;
  padding: 30px;
  margin: 25px auto;
  max-width: 550px;
  text-align: center;
}
.location-box h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.3em;
  color: #1a2a4a;
  margin: 0 0 12px;
}
.location-box .address {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}
.location-box .distance {
  background: #a1c057;
  color: #fff;
  font-family: 'latobold', sans-serif;
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
}

.location-points {
  margin-top: 25px;
}
.location-point {
  background: #fff;
  border-left: 4px solid #a1c057;
  padding: 20px 25px;
  margin-bottom: 15px;
}
.location-point h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.15em;
  color: #1a2a4a;
  margin: 0 0 8px;
}
.location-point p {
  color: #555;
  margin: 0;
}

/* Jail Process */
.jail-process {
  padding: 50px 0;
  background: #4b4b4b;
  color: #fff;
}
.jail-process h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
}
.jail-process .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #ccc;
}
.jail-process p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}
.jail-process h3 {
  font-family: 'latobold', sans-serif;
  color: #a1c057;
  margin: 20px 0 10px;
}

/* Info Cards */
.info-cards {
  margin-top: 25px;
}
.info-card {
  background: #fff;
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: center;
}
.info-card h3 {
  font-family: 'latobold', sans-serif;
  font-size: 1.2em;
  color: #1a2a4a;
  margin: 0 0 12px;
}
.info-card p {
  color: #555;
  margin: 0 0 12px;
  line-height: 1.6;
}
.info-card a {
  color: #a1c057;
  font-family: 'latobold', sans-serif;
}

/* Visiting Section */
.visiting-section {
  padding: 50px 0;
  background: #f9f9f9;
}
.visiting-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 15px;
}
.visiting-section .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 25px;
  color: #555;
}
.visiting-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section {
  padding: 60px 0;
  background: #fff;
}
.contact-form-section h2 {
  font-family: 'latoblack', sans-serif;
  font-size: 2em;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 30px;
}
.contact-form-section .form-group {
  margin-bottom: 20px;
}
.contact-form-section .form-control {
  height: 50px;
  padding: 12px 18px;
  font-size: 1em;
  border: 1px solid #ddd;
  border-radius: 3px;
  transition: border-color 0.2s ease;
}
.contact-form-section .form-control:focus {
  border-color: #a1c057;
  box-shadow: 0 0 0 2px rgba(161, 192, 87, 0.15);
  outline: none;
}
.contact-form-section textarea.form-control {
  height: 120px;
  resize: vertical;
}
.contact-form-section select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.contact-form-section .btn {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1em;
  margin-top: 10px;
}

/* ============================================
   FLOATING PHONE BUTTON
   ============================================ */
.floating-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #a1c057;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  z-index: 1000;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-phone.visible {
  opacity: 1;
  pointer-events: auto;
}
.floating-phone:hover {
  transform: scale(1.08);
  background: #8aaa45;
}
.floating-phone svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
@media (min-width: 992px) {
  .floating-phone {
    display: none;
  }
}

/* Open Now Indicator */
.open-indicator {
  display: inline-flex;
  align-items: center;
  background: rgba(161, 192, 87, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  margin-right: 10px;
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .hero-dark,
  .hero-urgent {
    padding: 40px 15px;
  }
  .hero-dark h1,
  .hero-urgent h1 {
    font-size: 2.2em;
  }
  .hero-dark .subheadline,
  .hero-urgent .subheadline {
    font-size: 1.2em;
  }
  .hero-dark p,
  .hero-urgent p {
    font-size: 1.05em;
  }
  .hero-dark .btn-cta,
  .hero-urgent .btn-cta,
  .btn-cta {
    font-size: 1.15em;
    padding: 14px 25px;
    display: block;
    margin: 0 auto;
    max-width: 280px;
  }

  .content-section h2,
  .feature-boxes h2,
  .process-section h2,
  .faq-section h2,
  .areas-section h2,
  .final-cta h2,
  .checklist-section h2,
  .about-section h2,
  .services-section h2,
  .questions-section h2,
  .action-section h2,
  .why-section h2,
  .jail-process h2,
  .visiting-section h2 {
    font-size: 1.7em;
  }

  .feature-box,
  .service-box {
    min-height: auto;
  }

  .equal-height {
    display: block;
  }

  .process-section .row {
    display: block;
  }
  .process-section .row > [class*='col-'] {
    display: block;
  }

  .trust-badges .badge-item {
    margin-bottom: 15px;
  }

  .payment-logos span {
    display: block;
    margin: 8px 0;
  }

  .location-box {
    padding: 20px;
    margin: 20px 15px;
  }

  .payment-options {
    display: block;
  }
  .payment-options > [class*='col-'] {
    display: block;
  }
}
