/* FAQ Styling */
.faq-question {
  font-weight: 600;
  font-size: 1.5rem;
  color: #1C2139; /* dark blue for questions */
  cursor: pointer;
  padding: 8px 0;
}

.faq-answer {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #444; /* softer color for answers */
  border-left: 3px solid #e63946; /* red accent */
  padding-left: 12px;
}

/* FAQ clickable links */
/* Prevents phone + email from breaking to next line */
.contact-inline {
  white-space: nowrap;
}

.faq-link {
  color: #e63946;      /* red text */
  font-weight: 600;
  text-decoration: none;
}

.faq-link:hover {
  color: #1C2139;      /* dark blue on hover */
  text-decoration: underline;
}

.btn-wrapper {
  text-align: center; 
  margin-top: 20px;
}

.btn-wrapper .btn {
  display: inline-flex; 
  justify-content: center;
}

.inline-link {
  display: inline;        /* makes sure link behaves like text */
  white-space: nowrap;    /* prevents line break in the middle */
  color: #e63946;         /* match your theme (red) */
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
  color: #1C2139;         /* hover effect */
}

.contact-box {
  background: #f8f9fa;
  border-left: 4px solid #e63946;
  padding: 16px;
  border-radius: 6px;
  margin-top: 20px;
}

.contact-box h2 {
  color: #1C2139;
  margin-top: 0;
}

.contact-link {
  color: #e63946;             /* red by default */
  text-decoration: none;      /* remove underline */
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #1C2139;             /* dark blue on hover */
  text-decoration: underline; /* underline on hover */
}


.contact-inline {
  display: inline-flex;      /* keeps everything on the same line */
  gap: 6px;                  /* adds small space between phone, "or", and email */
  align-items: center;
  white-space: nowrap;       /* prevents wrapping */
}

.faq-link {
  color: #e63946;            /* red default */
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-link:hover {
  color: #1C2139;            /* dark blue on hover */
  text-decoration: underline;
}

/* ADJUST FOOTER GAP COLUMN */
.footer-top .container {
  display: grid;
  grid-template-columns: 0.3fr 0.3fr 0.3fr 0.3fr 0.3fr; /* 5 columns */
  gap: 32px;
}

@media (max-width: 900px) {
  .footer-top .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top .container { grid-template-columns: 1fr; }
}


