/* Global */
.td-section {max-width: 1140px; margin: 2rem auto;}
.td-section h2 {font-size: 2.75rem; line-height: 1.1;}
.td-section h3 {font-size: 1.5rem;}
.td-section p {line-height: 1.4;}
.td-section ul {font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-weight: 400; line-height: 1.3; margin: 0 0 2rem 0;}
.td-section ul li {margin: 0; font-weight: 400;}
.td-section ul li a {font-weight: 400; color: #DA2A1D; text-decoration: underline;}
.td-btn-text {color: #DA2A1D !important;}
.td-btn-group .td-btn-text {color: #DA2A1D !important;}

/* Hero */
.td-hero {position: relative; background: #222; width: 100vw;max-width: 100vw;left: 50%;right: 50%;margin-left: -50vw;margin-right: -50vw;padding-left: 0;padding-right: 0;}
.td-hero > img {object-fit: cover; width: 100%; height: 100%; position: absolute; inset: 0; opacity: .25; z-index: 1;}
.td-hero .td-hero-text {position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 10; padding: 4rem 2rem; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; gap: 15px;}
.td-hero .td-hero-text h1 {color: #fff; margin: 0; line-height: 1;}
.td-hero .td-hero-text p {margin: 0; color: #fff;}
.td-hero .td-hero-text p.preheader {font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; text-transform: uppercase; font-weight: 700; color: #fff;}
.td-hero .td-hero-text .td-btn {justify-self: center; color: #fff;}
.td-hero .td-btn {color: #fff;}

/* Button */
.td-btn {display: inline-block; padding: 15px 30px; background: #DA2A1D; font-family: "Syne", Sans-serif; color: #fff; border-radius: 5px; text-decoration: none; font-weight: 700; text-transform: uppercase; border: none; cursor: pointer; transition: background-color 0.3s ease;}
.td-btn:hover {background: #CC281C; color: #fff;}
.td-btn-group {display: grid; justify-items: flex-start; align-items: start; grid-auto-flow: row; gap: 5px; margin: 0 0 2rem 0;}
.td-btn-text {background: none; color: #DA2A1D; padding: 0; font-size: 1.5rem;}
.td-btn-text:hover {background: none; color: #DA2A1D; text-decoration: underline;}

/* Two Col Content */
.td-content-2col {display: grid; gap: 2rem;}
.td-lead {font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-size: 1.5rem; border-left: 5px solid #DA2A1D; padding: 0 0 0 2rem;}
.td-content-2col img {width: 100%;}
.td-content-2col + .td-content-2col {border-top: 1px solid #ccc; padding-top: 4rem;}

.td-bkg-cover {
    position: relative;
    background: #222;
    color: #fff;
    overflow: hidden;
    z-index: 5;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 0;
  padding-right: 0;
}

.td-bkg-cover > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.td-bkg-cover .td-bkg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 2;
}

.td-section-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.td-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 0 3rem 0;
}

.td-header h2 {
    color: #fff;
    margin: 0;
}

.td-header p {
    max-width: 975px;
    margin: 0 auto;
    line-height: 1.3;
}
/* Cards */
.td-cards {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; row-gap: 2.5rem;}
.td-card {background: #fff; border-radius: 5px; box-shadow: 0 0 15px rgba(0,0,0,.1); position: relative; padding: 2rem 1rem 1rem 1rem;}
.td-card-icon {background: #DA2A1D; padding: 5px; width: 60px; height: 60px; border-radius: 50%; display: grid; place-content: center; position: absolute; top: -30px; left: calc(50% - 30px);}
.td-card-icon img {max-width: 25px;}
.td-card-text {text-align: center; color: #222; line-height: 1.4; font-size: .9rem; height: 100%; display: flex; flex-direction: column;}
.td-card-text h3 {font-size: 1.5rem; line-height: 1.2;}
.td-card-text .td-btn-group {margin: auto 0 0 0;}
.td-card-text .td-btn-text {display: block; text-align: center; width: 100%; font-size: 1.25rem; margin: auto 0 0 0;}

/* Responsive Cards Grid - 4 per row on desktop, 2 on tablet, 1 on mobile */
@media screen and (min-width: 1024px) {
    .td-cards {grid-template-columns: repeat(4, 1fr); gap: 1.5rem;}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .td-cards {grid-template-columns: repeat(2, 1fr); gap: 1.25rem;}
}

@media screen and (max-width: 767px) {
    .td-cards {grid-template-columns: 1fr; gap: 1rem;}
}

/* TD Box */
.td-box {padding: 1.25rem; background:#f4f4f4; border: 1px solid #ccc; border-radius: 5px; box-shadow: 5px 5px 10px rgba(0,0,0,.1);}
.td-box + .td-box {margin-top: 2rem;}
.td-box ul {padding: 0 0 0 1rem; list-style-type: square;}
.td-box ul a {display: block; margin: 5px 0;}

/* Sidebar */
.td-content-sidebar .td-content-2col h2 {font-size: 2rem;}
.td-content-sidebar .td-content-2col p {font-size: .9rem;}
.td-content-sidebar .td-content-2col .td-btn {font-size: 1.25rem;}
.td-content-sidebar .td-content-2col + .td-content-2col {border-top: 1px dotted #ccc; padding-top: 2rem; margin-top: 2rem;}
ul.sidebar-links {list-style: none; padding: 0; margin: 0;}
ul.sidebar-links a {display: block; padding: 10px 5px; color: #333 !important; text-decoration: none !important; position: relative;}
ul.sidebar-links a:hover {text-decoration: underline !important;}
ul.sidebar-links .active {font-weight: 700;}
ul.sidebar-links .active:before {
    content: ""; position: absolute; left: -30px; top: 15px; rotate: -90deg;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #DA2A1D;
}

/* Check List */
.list-columns {display: grid; justify-items: start; align-items: start;}
.list-columns-2 {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;}
.list-columns-3 {display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;}
.list-columns-4 {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;}
.list-columns ul, .td-checklist {padding: 0 !important; list-style: none !important;}
.list-columns ul li, .td-checklist li {background: url(img/check-red.png) left center no-repeat; padding: 5px 0 5px 25px;}
.list-columns ul li + li, .td-checklist li + li {border-top: 1px dotted #aaa;}

@media screen and (min-width: 1024px) {
.td-hero .td-hero-text {padding: 6rem 4rem;}
.td-hero .td-hero-text p {font-size: 1.35rem;}

.td-section {margin: 4rem auto;}

.td-content-2col {display: grid; grid-template-columns: 1fr 1fr; gap: 50px;}
.td-content-2col.td-content-2dcol-alt {grid-template-columns: 1.5fr 1fr;}

.td-section-container {max-width: 1140px; margin: 4rem auto;}

.td-content-sidebar {display: grid; grid-template-columns: 3fr 1fr; gap: 2rem;}
.sticky-top {position: sticky; top: 115px;}
}
