@font-face {
    font-family: 'Acumin Variable';
    src: url('../assets/fonts/Acumin-Variable-Concept.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0a1e3c;
    --navy-mid: #0d2a52;
    --navy-light: #163a6e;
    --blue: #1a5aad;
    --blue-bright: #2172d4;
    --gold: #c8a84b;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --gray: #8a96a8;
    --text: #2c3a50;
    --font-main: 'Acumin Variable', 'DM Sans', 'Inter', 'Public Sans', 'Roboto', sans-serif;
    --font-head: 'Acumin Variable', 'PP Neue Montreal', 'Inter Tight', 'Schibsted Grotesk', sans-serif;
    --font-ui: 'Acumin Variable', 'DM Sans', 'Schibsted Grotesk', sans-serif;
    --font-p: 'Acumin Variable', 'Public Sans', 'Inter', 'Roboto', sans-serif;
    --font-label: 'Acumin Variable', 'Schibsted Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    margin: 0;
}

p {
    font-family: var(--font-p);
    font-size: 18px;
    line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================= */
/* NAVBAR                     */
/* ========================= */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-nav.scrolled {
    background: rgba(10, 30, 60, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo-img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.site-nav.scrolled .logo-img {
    transform: scale(0.9);
    filter: brightness(1.15);
}

/* subtle bottom border */
.site-nav::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: -1;
}

/* FULL WIDTH CONTAINER */
.site-nav .container {
    max-width: 100%;
    padding: 0 40px;
    position: relative;
}

/* NAV LAYOUT */
.nav-inner {
    height: 90px;
    display: flex;
    align-items: center;
    position: relative;
}

/* ================= LEFT (LOGO) ================= */
.nav-inner>a:first-child {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo-img {
    width: 180px;
    height: auto;
}

/* ================= CENTER (MENU) ================= */
.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* ================= RIGHT (PHONE CTA) ================= */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    color: #fff;
    text-decoration: none;
}

/* PHONE ICON */
.phone-icon {
    width: 34px;
    height: 34px;
}

/* TEXT BLOCK */
.nav-cta>div {
    display: flex;
    flex-direction: column;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.1;
}

/* LABEL */
.nav-cta-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(209, 235, 255, 0.95);
}

/* NUMBER */
.nav-cta-num {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #ffffff;
}

/* ================= MOBILE ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(10, 30, 60, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav>a {
    display: block;
    padding: 14px 24px;
    color: #fff;
    text-decoration: none;
    font-family: 'Acumin Variable', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    cursor: pointer;
}

.mobile-dropdown-toggle a {
    color: #fff;
    text-decoration: none;
    font-family: 'Acumin Variable', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none !important;
    padding: 0 !important;
}

.mobile-arrow {
    width: 12px;
    height: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-dropdown.open>.mobile-dropdown-toggle .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown.open>.mobile-submenu {
    display: block;
}

.mobile-submenu>a {
    display: block;
    padding: 12px 24px 12px 40px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Acumin Variable', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu>.mobile-dropdown .mobile-dropdown-toggle {
    padding: 12px 24px 12px 40px;
}

.mobile-submenu>.mobile-dropdown .mobile-dropdown-toggle a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.mobile-submenu-l3 {
    background: rgba(255, 255, 255, 0.03);
}

.mobile-submenu-l3 a {
    padding-left: 56px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ================= CONTENT PAGE HERO ================= */
.content-hero {
    position: relative;
    min-height: 100vh;
    background: url('../assets/contentPage/hero section/background.jpg') center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.content-hero::before {
    display: none;
}

.content-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.content-hero-copy {
    max-width: 900px;
    padding-left: clamp(18px, 4.4vw, 48px);
}

.content-hero-copy h1,
.content-hero-copy h2 {
    font-family: var(--font-head);
    text-transform: uppercase;
    color: #ffffff;
    line-height: .94;
    letter-spacing: .4px;
    margin-bottom: 20px;
}

.content-hero-copy h1 span,
.content-hero-copy h1 strong,
.content-hero-copy h2 span,
.content-hero-copy h2 strong {
    display: block;
}

.content-hero-copy h1 span,
.content-hero-copy h2 span {
    font-size: clamp(44px, 5.8vw, 48px);
    font-weight: 500;
    margin-bottom: 10px;
}

.content-hero-copy h1 strong,
.content-hero-copy h2 strong {
    margin-top: 3px;
    font-size: clamp(58px, 7.4vw, 64px);
    font-weight: 600;
}

.content-hero-copy p {
    font-family: var(--font-p);
    font-size: 18px;
    line-height: 1.75;
    color: rgba(228, 239, 252, .93);
    max-width: 900px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* ================= BUTTON WRAPPER ================= */
.hero-actions,
.content-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* ================= BLUE BUTTON ================= */
.hero-phone,
.content-hero-phone {
    display: flex;
    align-items: center;

    height: 78px;
    min-width: 300px;

    background: linear-gradient(90deg, #118CF0 0%, #2BA0FF 100%);
    border-radius: 6px;
    overflow: hidden;

    text-decoration: none;
    font-family: var(--font-main);
    color: #fff;

    transition: background 0.3s ease;
}

.hero-phone:hover,
.content-hero-phone:hover {
    background: linear-gradient(90deg, #0F7FFF 0%, #1A8FFF 100%);
}

/* ================= ICON BLOCK (LEFT) ================= */
.hero-phone-icon,
.content-hero-phone-icon {
    width: 56px;
    height: 100%;
    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON */
.phone-svg,
.content-phone-svg {
    width: 48px;
    height: 48px;
    fill: #ffffff;
}

/* ================= TEXT BLOCK ================= */
.hero-phone-meta,
.content-hero-phone-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 0 16px;
}

.hero-phone-label,
.content-hero-phone-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    opacity: 0.9;
    font-family: var(--font-main);
    margin-bottom: 3px;
}

/* NUMBER */
.hero-phone-number,
.content-hero-phone-number {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-main);
}

/* ================= GREY BUTTON ================= */
.hero-submit,
.content-hero-submit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    height: 78px;
    min-width: 280px;
    padding: 0 24px;

    background: #e9ecef;
    color: #1163A7;

    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-main);

    transition: background 0.3s ease;
}

.hero-submit:hover,
.content-hero-submit:hover {
    background: #CBF0FA;
}

/* TEXT */
.hero-submit strong,
.content-hero-submit strong {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: center;
    font-family: var(--font-main);
}

.hero-submit span,
.content-hero-submit span {
    font-size: 11px;
    letter-spacing: 1px;
    color: #2785D2;
    font-weight: 600;
    font-family: var(--font-main);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 35px;
    }

    .site-nav .container {
        padding: 0 35px;
    }

    /* Info grid — single column on tablet */
    .violent-info-grid {
        grid-template-columns: 1fr !important;
    }

    /* Divider aligned with h2 */
    .violent-divider {
        margin-left: 0;
    }

    /* Image-to-text spacing */
    .assault-feature {
        margin-bottom: 60px;
    }

    /* Paragraph text size on tablet */
    .violent-main p {
        font-size: 17px !important;
    }

    /* Section eighteen form wrap full width */
    .section-eighteen-inner {
        grid-template-columns: 1fr !important;
    }

    .section-eighteen-form-wrap {
        max-width: 100% !important;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .content-hero {
        min-height: 88vh;
        background-position: 60% center;
    }

    .content-hero-copy {
        padding-left: 0;
        max-width: 680px;
    }

    .content-hero-copy h1 span,
    .content-hero-copy h2 span {
        font-size: clamp(34px, 5.8vw, 52px);
    }

    .content-hero-copy h1 strong,
    .content-hero-copy h2 strong {
        font-size: clamp(44px, 7vw, 68px);
    }

    .content-hero-copy p {
        font-size: 18px;
        max-width: 740px;
    }
}

@media (max-width: 767px) {
    .site-nav .container {
        padding: 0 16px;
    }

    .content-hero {
        min-height: 100dvh;
        padding-top: 76px;
        background-position: 64% center;
    }

    .content-hero-copy {
        max-width: 100%;
        text-align: left;
    }

    .content-hero-copy h1 span,
    .content-hero-copy h2 span {
        font-size: clamp(30px, 8vw, 42px);
    }

    .content-hero-copy h1 strong,
    .content-hero-copy h2 strong {
        font-size: clamp(42px, 10vw, 56px);
    }

    .content-hero-copy p {
        font-size: 17px;
        max-width: 100%;
    }

    .content-hero-copy .hero-actions,
    .content-hero-copy .content-hero-actions {
        margin-top: 24px;
        max-width: 380px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .content-hero-copy .hero-phone,
    .content-hero-copy .hero-submit,
    .content-hero-copy .content-hero-phone,
    .content-hero-copy .content-hero-submit {
        width: 100%;
        max-width: 380px;
        min-width: 0;
        min-height: 64px;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        height: 60px;
    }

    .logo-img {
        width: 124px;
        height: 38px;
    }

    .mobile-nav {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .content-hero-copy h1 span,
    .content-hero-copy h2 span {
        font-size: clamp(28px, 8.6vw, 34px);
    }

    .content-hero-copy h1 strong,
    .content-hero-copy h2 strong {
        font-size: clamp(36px, 11vw, 44px);
    }

    .content-hero-copy p {
        font-size: 16px;
        line-height: 1.66;
    }

    .content-hero-copy .hero-actions,
    .content-hero-copy .content-hero-actions {
        max-width: 100%;
        gap: 10px;
        padding-bottom: 28px;
    }

    .content-hero-copy .hero-phone,
    .content-hero-copy .hero-submit,
    .content-hero-copy .content-hero-phone,
    .content-hero-copy .content-hero-submit {
        min-height: 64px;
        max-width: 100%;
    }

    .content-hero-copy .hero-phone-icon,
    .content-hero-copy .content-hero-phone-icon {
        width: 48px;
    }

    .content-hero-copy .phone-svg,
    .content-hero-copy .content-phone-svg {
        width: 48px;
        height: 48px;
    }

    .content-hero-copy .hero-phone-meta,
    .content-hero-copy .content-hero-phone-meta {
        padding: 0 12px;
    }

    .content-hero-copy .hero-phone-label,
    .content-hero-copy .content-hero-phone-label {
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .content-hero-copy .hero-phone-number,
    .content-hero-copy .content-hero-phone-number {
        font-size: 16px;
    }

    .content-hero-copy .hero-submit,
    .content-hero-copy .content-hero-submit {
        padding: 0 14px;
    }

    .content-hero-copy .hero-submit strong,
    .content-hero-copy .content-hero-submit strong {
        font-size: 18px;
    }

    .content-hero-copy .hero-submit span,
    .content-hero-copy .content-hero-submit span {
        font-size: 10px;
        letter-spacing: 0.8px;
    }
}

/* ================= VIOLENT CONTENT SECTION ================= */
.violent-content-section {
    background: #f5f7fa;
    padding: 28px 0 48px;
}

.violent-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    align-items: start;
}

.violent-main {
    color: #2c3a50;
    overflow: visible;
}

.violent-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 14px;
    color: #5f738c;
    margin-bottom: 28px;
}

.violent-breadcrumb strong {
    color: #1f5fa4;
}

.violent-intro {
    font-family: var(--font-p);
    font-size: 18px;
    line-height: 1.75;
    color: #3d4f63;
    margin-bottom: 36px;
    max-width: 980px;
}

.violent-main h2,
.violent-main h3 {
    font-family: var(--font-head);
    text-transform: none;
    color: #0d2a52;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 44px;
    margin-bottom: 14px;
}

.violent-main h2:first-of-type,
.violent-main h3:first-of-type {
    margin-top: 0;
}

.violent-divider {
    width: 140px;
    height: 2px;
    background: #46ABFF;
    margin: 14px 0 24px;
    position: relative;
}

.violent-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #46ABFF;
    transform: translate(0px, -50%) rotate(45deg);
}

.violent-main p {
    font-family: var(--font-p);
    font-size: 18px;
    line-height: 1.75;
    color: #3d4f63;
    max-width: 980px;
    margin-bottom: 18px;
}

.violent-main p+p {
    margin-top: 2px;
}

.violent-main h4 {
    font-family: var(--font-head);
    font-size: 16.5px;
    color: #1f2f44;
    margin: 44px 0 22px;
}

.assault-feature {
    display: block;
    margin: 30px 0 44px;
}

.assault-feature-media {
    position: relative;
    overflow: hidden;
}

.assault-feature-media img {
    width: calc(100% + 2px);
    height: auto;
    object-fit: cover;
    display: block;
    margin: -1px;
    box-shadow: 0 18px 28px rgba(11, 34, 67, .1);
}

.assault-feature-accent {
    position: absolute;
    left: -14px;
    bottom: -10px;
    width: 56px;
    height: 56px;
    background: #4f88db;
}

.assault-feature-card {
    display: none;
}

/* ================= SIDEBAR COLUMN WRAPPER ================= */
.violent-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ================= SIDEBAR CTA (below sidebar nav) ================= */
.sidebar-cta {
    background: #082f60;
    color: #ffffff;
    padding: 28px 20px;
    width: 100%;
}

.sidebar-cta h4 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 22px;
    color: #ffffff;
}

.sidebar-cta a {
    display: flex;
    height: 52px;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #118CF0 0%, #2BA0FF 100%);
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font-ui);
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    padding: 0 16px;
    border-radius: 6px;
    text-align: center;
    transition: background 0.25s ease;
}

.sidebar-cta a:hover {
    background: #0F7FFF;
}

.assault-feature-card h4 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 22px;
    color: #ffffff;
}

.assault-feature-card a {
    display: inline-flex;
    min-height: 44px;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #118CF0 0%, #2BA0FF 100%);
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font-ui);
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 6px;
    transition: background 0.25s ease;
}

.assault-feature-card a:hover {
    background: #0F7FFF;
}

.violent-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 46px;
    max-width: 980px;
}

.violent-info-grid a {
    min-height: 84px;
    background: #edf2f8;
    border: 1px solid rgba(113, 146, 182, .14);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 14px 20px;
    color: #1882e2;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    transition: background 0.2s ease, color 0.2s ease;
}

.violent-info-grid a:hover {
    background: #dce8f5;
    color: #0F7FFF;
}

.sidebar {
    background: #E2F2FF;
    padding: 28px 20px;
    width: 100%;
    font-family: sans-serif;
}

.main-heading{
    margin-left: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #25518A;
    padding: 10px 0;
    font-family: 'Acumin Variable', 'DM Sans', 'Schibsted Grotesk', sans-serif;
}

/* SAME STYLE FOR BOTH */
.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #25518A;
    padding: 10px 0;
    font-family: 'Acumin Variable', 'DM Sans', 'Schibsted Grotesk', sans-serif;
}

.heading:hover{
    cursor: pointer;
}
.single {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #1f568f !important;
    font-family: 'Acumin Variable', 'DM Sans', 'Schibsted Grotesk', sans-serif;

}

/* LINE BELOW HEADINGS */
.group>.heading {
    border-bottom: 1px solid rgba(70, 172, 255, 0.2);
    margin-bottom: 8px;
}

/* SUBMENU INDENT */
.submenu {
    padding-left: 14px;
}

/* LINKS */
.submenu a {
    display: block;
    font-size: 13px;
    color: #31598D;
    padding: 6px 0;
    text-decoration: none;
}

/* HOVER */
.submenu a:hover {
    color: #2167c1;
    cursor: pointer;
}


.submenu a.active {
    color: #246ECF;
    font-weight: 600;
}

/* SPACING BETWEEN GROUPS */
.group+.group {
    margin-top: 10px;
}

/* ARROW STYLE */
.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #1f568f;
    border-bottom: 2px solid #1f568f;
    transform: rotate(45deg);
    transition: 0.3s;
    margin-left: 8px;
}
.arrow:hover{
    cursor: pointer;
}
/* ROTATE WHEN OPEN */
.group.open>.heading .arrow {
    transform: rotate(-135deg);
}

/* COLLAPSE LOGIC */
.group .submenu {
    display: none;
}

.group.open>.submenu {
    display: block;
}
@media (max-width: 1200px) {
    .violent-content-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
        gap: 22px;
    }

    .assault-feature {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 900px) {
    .violent-content-wrap {
        grid-template-columns: 1fr;
    }

    .violent-sidebar-col {
        display: none;
    }

    .violent-main {
        order: 1;
    }

    .violent-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .assault-feature {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 24px 0 34px;
        width: 100%;
        margin-right: 0;
    }

    .assault-feature-card {
        max-width: 320px;
        justify-self: start;
    }

    .assault-feature-accent {
        width: 44px;
        height: 44px;
        left: -10px;
        bottom: -8px;
    }
}

@media (max-width: 480px) {
    .violent-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= OTHER VIOLENT SECTION ================= */
.other-violent-section {
    background: #f5f7fa;
    padding: 10px 0 64px;
}

.other-violent-inner {
    max-width: 980px;
    border-top: 1px solid rgba(122, 157, 195, .24);
    padding-top: 26px;
}

.other-violent-inner h2,
.other-violent-inner h3 {
    font-family: var(--font-head);
    text-transform: none;
    color: #0d2a52;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 14px;
    margin-top: 20px;
}

.other-violent-divider {
    width: 96px;
    height: 2px;
    margin: 0 0 22px;
    background: #46ABFF;
    position: relative;
}

.other-violent-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #46ABFF;
    transform: translate(-4px, -50%) rotate(45deg);
}

.other-violent-inner p {
    font-family: var(--font-p);
    font-size: 18px;
    line-height: 1.75;
    color: #3d4f63;
    max-width: 920px;
    margin-bottom: 22px;
}

@media (max-width: 767px) {
    .other-violent-section {
        padding: 6px 0 44px;
    }

    .other-violent-inner {
        padding-top: 20px;
    }

    .other-violent-inner h2,
    .other-violent-inner h3 {
        font-size: clamp(26px, 8.2vw, 36px);
    }
}

/* ================= VIOLENT CARDS SECTION ================= */
.violent-cards-section {
    background: #f5f7fa;
    padding: 0 0 64px;
}

.violent-cards-inner {
    max-width: 980px;
}

.violent-info-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 8px;
    padding: 36px 28px 32px;
    box-shadow: 0 2px 12px rgba(23, 55, 95, .06);
}

.violent-info-card+.violent-info-card {
    margin-top: 20px;
}

.violent-info-card h3,
.violent-info-card h4 {
    font-family: var(--font-head);
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.22;
    text-transform: none;
    color: #0d2a52;
    margin-bottom: 14px;
}

.violent-info-card p {
    font-family: var(--font-p);
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0;
    color: #3d4f63;
    max-width: 880px;
    margin-bottom: 14px;
}

.violent-info-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .violent-cards-section {
        padding-bottom: 44px;
    }

    .violent-info-card {
        padding: 22px 18px 18px;
    }

    .violent-info-card h3,
    .violent-info-card h4 {
        font-size: clamp(20px, 6vw, 26px);
    }
}

/* ================= PUNISHMENT SECTION ================= */
.punishment-section {
    background: #f5f7fa;
    padding: 0 0 64px;
}

.punishment-inner {
    max-width: 980px;
    border-top: 1px solid rgba(120, 156, 196, .24);
    padding-top: 24px;
}

.punishment-inner h2,
.punishment-inner h3 {
    font-family: var(--font-head);
    text-transform: none;
    color: #0d2a52;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 20px;
}

.punishment-divider {
    width: 96px;
    height: 2px;
    margin: 0 0 22px;
    background: #46ABFF;
    position: relative;
}

.punishment-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #46ABFF;
    transform: translate(-4px, -50%) rotate(45deg);
}

.punishment-inner p {
    font-family: var(--font-p);
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0;
    color: #3d4f63;
    max-width: 920px;
    margin-bottom: 16px;
}

.punishment-list {
    list-style: disc;
    padding-left: 18px;
    margin: 8px 0 24px;
    max-width: 920px;
}

.punishment-list li {
    font-family: var(--font-p);
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: 0;
    color: #3d4f63;
    margin-bottom: 2px;
}

.punishment-emphasis {
    font-weight: 700;
    color: #0d2a52;
}

.punishment-rule {
    border: 0;
    height: 1px;
    background: rgba(120, 156, 196, .28);
    max-width: 920px;
    margin: 26px 0 34px;
}

@media (max-width: 767px) {
    .punishment-section {
        padding-bottom: 44px;
    }

    .punishment-inner {
        padding-top: 18px;
    }

    .punishment-inner h2,
    .punishment-inner h3 {
        font-size: clamp(26px, 8.2vw, 36px);
    }
}

/* section-eighteen styles inherited from style.css */

/* ================= FOOTER ================= */
/* ================= FOOTER ================= */
.site-footer {
    background: #15345B;
    padding: 80px 0 60px;
}

.site-footer-inner {
    max-width: 1500px;
}

.site-footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, .8fr) minmax(420px, 1.2fr);
    gap: 0;
}

.site-footer-col {
    color: rgba(173, 197, 229, .78);
    padding: 0 30px;
}

.site-footer-col:first-child {
    padding-left: 0;
}

.site-footer-col:last-child {
    padding-right: 0;
}

.site-footer-col:not(:last-child) {
    border-right: 1px solid rgba(76, 117, 167, .36);
}

.site-footer-logo {
    width: 172px;
    height: auto;
    margin-bottom: 28px;
}

.site-footer-brand p {
    font-family: 'Acumin Variable', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.72;
    color: rgba(173, 197, 229, .72);
    max-width: 430px;
    letter-spacing: 0 !important;
}

.site-footer-contact h3,
.site-footer-practice h3 {
    font-family: 'Acumin Variable', sans-serif;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 22px;
}

.site-footer-contact p,
.site-footer-contact address {
    font-family: 'Acumin Variable', sans-serif !important;
    font-style: normal;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(173, 197, 229, .76);
    letter-spacing: 0 !important;
}

.site-footer-contact p {
    margin-bottom: 5px;
}

.site-footer-contact p strong {
    font-weight: 500;
    color: rgba(206, 223, 245, .9);
}

.site-footer-contact address {
    margin-top: 16px;
}

.site-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 32px;
}

.site-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-links li {
    margin-bottom: 7px;
}

.site-footer-links a {
    font-family: var(--font-p);
    font-size: 15px;
    line-height: 1.25;
    color: rgba(173, 197, 229, .76);
    transition: color 0.2s ease;
}

.site-footer-links a:hover {
    color: #9AC6FF;
}

.site-footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(76, 117, 167, .35);
}

.site-footer-bottom p {
    font-family: var(--font-p);
    color: rgba(161, 187, 221, .68);
    font-size: 16px;
    line-height: 1.58;
    max-width: 900px;
}

.site-footer-copy {
    margin-top: 12px;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .site-footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer-col:not(:last-child) {
        border-right: none;
        padding-right: 0;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(76, 117, 167, .42);
    }

    .site-footer-links {
        gap: 10px 24px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 42px 0 28px;
    }

    .section-eighteen-inner {
        gap: 22px;
    }

    .section-eighteen-content {
        margin-left: 0;
    }

    .site-footer-logo {
        width: 160px;
    }

    .site-footer-brand p,
    .site-footer-contact p,
    .site-footer-contact address,
    .site-footer-links a {
        font-size: 13px;
    }

    .site-footer-contact h3,
    .site-footer-practice h3 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .section-eighteen-content p {
        line-height: 1.66;
    }

    .site-footer-links {
        grid-template-columns: 1fr;
    }

    .site-footer-bottom p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .section-eighteen {
        min-height: 0;
        padding: 34px 0 18px;
    }

    .section-eighteen-inner {
        align-items: start;
        gap: 16px;
    }

    .section-eighteen-content {
        padding-top: 0;
        max-width: 100%;
    }

    .section-eighteen-content h2 strong {
        font-size: clamp(28px, 8.4vw, 38px);
    }

    .section-eighteen-content h2 span {
        font-size: clamp(24px, 7.4vw, 34px);
    }

    .section-eighteen-content p {
        font-size: 18px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .section-eighteen-form-wrap {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        padding: 14px;
    }

    .section-eighteen-phone-bar {
        min-height: 52px;
        gap: 8px;
        padding: 8px 10px;
    }

    .section-eighteen-phone-icon {
        width: 44px;
        height: 44px;
    }

    .section-eighteen-phone-icon img {
        width: 40px;
        height: 40px;
    }

    .section-eighteen-phone-icon svg {
        width: 40px;
        height: 40px;
    }

    .section-eighteen-phone-copy small {
        font-size: 9px;
        letter-spacing: 1.2px;
        margin-bottom: 2px;
    }

    .section-eighteen-phone-copy strong {
        font-size: clamp(22px, 7.4vw, 30px);
        line-height: .95;
    }

    .section-eighteen-or {
        margin: 12px 0 12px;
        gap: 10px;
    }

    .section-eighteen-form {
        gap: 8px;
    }

    .section-eighteen-form input,
    .section-eighteen-form textarea {
        font-size: 15px;
        min-height: 42px;
        padding: 10px 12px;
    }

    .section-eighteen-form textarea {
        min-height: 96px;
    }

    .section-eighteen-form button {
        min-height: 64px;
        margin-top: 6px;
        font-size: clamp(13px, 3.8vw, 15px);
        letter-spacing: 2px;
        max-width: 100%;
    }
}