:root {
    --dark-blue: #0f1c35;
    --light-blue-bar: #bce1ff;
    --section-grey: #f4f5f7;
    --text-dark: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/Background.png') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

.nav-link {
    transition: border-color 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    border-bottom: 2px solid white;
}

.section-title {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #222;
}

.list-bullet::before {
    content: "•";
    color: #333;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.jurisdiction-bar {
    background-color: var(--light-blue-bar);
    font-weight: 600;
}

footer {
    background-color: var(--dark-blue);
}

.shadow-title {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}
