/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/* FORCE CUSTOM LOGO SIZE */
.header__logo img, 
.logo img {
    max-height: 70px !important;  /* adjust size */
    width: auto !important;
}

/* REMOVE SPARK EXTRA HEADER SPACING */
.header,
.site-header,
.website-header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* FIX HEADER CONTENT CENTERING */
.header__inner,
.site-header__container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/*****************************************/
/*********************************************/
/* HIDE SPARK DEFAULT LOGO & INSERT YOURS   */
/*********************************************/

/* Hide original Spark logo */
header .logo img {
    opacity: 0 !important;
}

/* Insert your custom TIR logo */
header .logo {
    background-image: url(https://www.theinsurancereset.com/hubfs/TIR%20Christy%20Hammond%20LOGO.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    height: 70px !important;   /* Match the size we set earlier */
}
/* ===== TIR Global Footer ===== */

.tir-footer {
  background-color: #1F2937; /* refined charcoal slate */
  color: #F9FAFB;
  padding: 70px 40px 40px;
  font-size: 15px;
  font-family: var(--primary-font);
}

.tir-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.tir-footer-col h4 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF !important;
  letter-spacing: 0.3px;
}

.tir-footer-col p {
  margin: 0;
  max-width: 420px;
  line-height: 1.6;
  color: #F3F4F6;
}

.tir-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tir-footer-col ul li {
  margin-bottom: 14px;
}

.tir-footer-col ul li a {
  text-decoration: none;
  color: #F3F4F6;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.tir-footer-col ul li a:hover {
  color: #FFFFFF;
}

.tir-footer-legal {
  border-top: 1px solid #374151;
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: #CBD5E1;
  max-width: 1100px;
  margin: 0 auto;
}

.tir-footer-legal p {
  margin: 6px 0;
}

@media (max-width: 768px) {
  .tir-footer-inner {
    flex-direction: column;
    gap: 35px;
  }