:root {
    --text: #37352F;
    --headings: #071F2F;
    --text-light: #6B6B6B;
    --accent: #0070D7;
    --accent-hover: #005BB5;
    --bg: #ffffff;
    --bg-light: #F7F6F3;
    --bg-dark: #4d5663;
    --border: #E3E2DE;
    --green: #269d4a;
}

body {
   letter-spacing: -0.01em;
   color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--headings)!important;
     letter-spacing: -0.05em;
}

.h-underline {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 5px;
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.bg-accent {
    background: var(--accent)!important;
}

.bg-green {
    background: var(--green)!important;
}

.bg-light {
    background: var(--bg-light)!important;
}
.bg-dark {
    background: var(--bg-dark)!important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-accent {
    color: var(--accent);
}

.text-green {
    color: var(--green);
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.border-dashed {
    border-style: dashed!important;
}

.border-dark {
    border-color: var(--headings)!important;
}

.hr-custom {
    max-width: 40%;
    margin: 0 auto;
    height: 2px;
    background-color: #fff!important;
    border: 0px!important;
    opacity: 1!important;
}

.stat-highlight {
            border-left: 5px solid;
        }

.position-relative img {
    position: relative;
    z-index: 1;
}

.position-relative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 31, 47, 0.7) 0%, rgba(0, 112, 215, 0.5) 100%);
    z-index: 2;
    border-radius: inherit
}

.position-relative .stat-highlight {
    position: relative;
    z-index: 3;
}



.cta-checklist {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
    text-align: left;
}

.cta-checklist li {
    position: relative;
    text-align: center;
} 
