/* RESET */
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background-color: #1E2A38;
    color: #F4F6F8;
    line-height: 1.6;
}

/* GLOBAL IMAGE SAFETY */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* LAYOUT */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;
}

/* HEADER */
header {
    background: #1E2A38;
    border-bottom: 1px solid #4A5A63;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* HEADER SPACING */
header .container {
    padding: 20px 0;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO (UPGRADED) */
.logo {
    height: 70px;
    width: auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

/* NAV LINKS */
nav a {
    color: #F4F6F8;
    margin-left: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

nav a:hover {
    color: #F26419;
}

/* HERO */
.hero {
    padding: 120px 0 100px 0;
    background: linear-gradient(rgba(30,42,56,0.9), rgba(30,42,56,0.95)),
                url('/images/enforcement-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-family: Poppins, sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #cbd5db;
    max-width: 600px;
}

/* SECTIONS */
.section {
    padding: 80px 0;
    border-top: 1px solid #4A5A63;
}

.section.alt {
    background: #223140;
}

/* HEADINGS */
.section h2 {
    font-family: Poppins, sans-serif;
    font-size: 30px;
    margin-bottom: 10px;
}

.section p {
    color: #cbd5db;
}

/* LISTS */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* BUTTONS */
.button {
    display: inline-block;
    padding: 14px 26px;
    background: #F26419;
    color: #ffffff;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}

.button:hover {
    background: #d65314;
}

/* CARDS */
.card {
    background: #223140;
    border: 1px solid #4A5A63;
    padding: 30px;
    border-radius: 6px;
    margin-top: 20px;
}

/* CTA */
.cta {
    text-align: center;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px;
    background: #1E2A38;
    border-top: 1px solid #4A5A63;
    font-size: 14px;
}
/* GRID LAYOUTS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

/* CARD IMPROVEMENT */
.card {
    background: #223140;
    border: 1px solid #4A5A63;
    padding: 30px;
    border-radius: 6px;
    margin-top: 20px;
    height: 100%;
}

/* SMALL TEXT */
.small {
    color: #cbd5db;
    font-size: 14px;
}