/* ===============================
   1. GLOBAL & RESET
================================ */

:root {
    --navbar-height: 180px;
    scroll-padding-top: var(--navbar-height);
}

html {
    height: 100%;
    margin: 0;;
    overflow-y: auto;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    background-color: #f5f7f9;
    scroll-behavior: smooth;
    padding-top: var(--navbar-height);
	display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    min-height: calc(100vh - 420px);
}

.phone-icon {
    color: #ffffff;
    margin-right: 6px;
}

/* ===============================
   PAGE CONTENT HEADINGS (GLOBAL)
================================ */

.page-content h1 {
    margin-top: 0;
    color: #004fa3;
    font-size: 2.4rem;
    font-weight: 600;
}

.page-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: #004fa3;
}

.page-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #004fa3;
}

/* ===============================
   HERO TEXT OVERRIDES
================================ */

.hero h1,
.hero p,
.services-hero h1,
.services-hero p,
.internal-hero h1,
.internal-hero p {
    color: #ffffff !important;
}

.hero h1,
.services-hero h1,
.internal-hero h1 {
    text-shadow: 0 3px 15px rgba(0,0,0,0.9);
}

.hero p,
.services-hero p,
.internal-hero p {
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* ===============================
   7. UTILITIES (BACK TO TOP)
================================ */

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #004fa3;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.back-to-top::before {
    content: '';
    width: 12px;
    height: 12px;
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) rotate(45deg);
}

/* ===============================
   PAGE-SPECIFIC TWEAKS
================================ */

.policy-note {
    margin-top: 40px;
    font-size: 0.95rem;
    color: #555;
}

.privacy-page h3 {
    margin-top: 36px;
}

.back-to-top:hover {
    transform: translateY(-3px);
}
