.brand-logo-container {
    display: flex;
    align-items: center;  /* Center vertically */
    justify-content: center;  /* Center horizontally */
    height: 150px;  /* Set a fixed height for uniformity */
}

.brand-logo {
    max-height: 100%;  /* Fit inside the container */
    max-width: 100%;  /* Maintain aspect ratio */
    width: auto;
    height: auto;
    padding: 20px;
}

.custom-padding {
    padding-left: 20px; /* Adjust as needed */
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/sentinel/montserrat-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/sentinel/montserrat-400.woff2') format('woff2');
}

@font-face {
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/sentinel/ibmplexsans-500.woff2') format('woff2');
}

.sentinel-brand {
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    line-height: 1 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    gap: 10px;
}

.sentinel-icon {
    height: 34px;
    width: auto;
    flex-shrink: 0;
}

.sentinel-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sentinel-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.05em;
    color: #fff !important;
}

.sentinel-sub {
    display: block;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: #fff !important;
}

/* ===== THEME REFRESH ===== */

/* Body & Typography */
body {
    font-size: 15px;
    line-height: 1.75;
    color: #2c2c2c;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 1.1em;
}

/* Navbar */
.navbar-inverse {
    background-color: #212121;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar-inverse .navbar-nav > li > a {
    color: #bbb;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    background-color: #d5001a;
    color: #fff;
}

/* Primary color overrides */
.text-primary {
    color: #d5001a !important;
}

.btn-primary {
    background-color: #d5001a;
    border-color: #a80015;
    color: #fff;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #a80015;
    border-color: #800010;
    color: #fff;
}

.btn-default {
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-color: #ccc;
    color: #333;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.btn-default:hover,
.btn-default:focus {
    background-color: #212121;
    border-color: #212121;
    color: #fff;
}

/* Page headers */
.page-header {
    border-bottom: 2px solid #d5001a;
    padding-bottom: 12px;
    margin-top: 30px;
    margin-bottom: 24px;
}

/* Panels / Cards */
.panel {
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
}

.panel:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transform: translateY(-2px);
}

.panel-default > .panel-heading {
    background-color: #f7f7f7;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 6px 6px 0 0;
    color: #1a1a1a;
    font-weight: 600;
}

.panel-body {
    padding: 20px;
}

/* Tabs */
.nav-tabs > li > a {
    border-radius: 4px 4px 0 0;
    color: #555;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #d5001a;
    border-top: 2px solid #d5001a;
}

.tab-content {
    padding: 24px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background: #fff;
}

/* Accordion / FAQ */
.panel-group .panel {
    margin-bottom: 6px;
    border-radius: 4px;
}

.panel-group .panel:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.accordion-toggle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
}

.accordion-toggle:hover,
.accordion-toggle:focus {
    color: #d5001a;
    text-decoration: none;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding-left: 0;
    font-size: 13px;
}

/* Footer */
footer {
    border-top: 1px solid #e8e8e8;
    padding-top: 30px;
    color: #666;
    font-size: 13px;
}

footer .social-icons a i {
    font-size: 18px;
    transition: color 0.2s;
}

footer .social-icons a:hover i {
    color: #d5001a !important;
}