:root {
    --pp-darkblue: #001a74;
    --pp-accent: #f72f07;
    --pp-light: #fcfcfc;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--pp-light);
    color: #1b1f3a;
    padding-top: 76px; /* offset for fixed navbar */
}

a {
    text-decoration: none;
}

/* Navbar */
.navbar {
    background-color: var(--pp-darkblue) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--pp-accent) !important;
}

.btn-brand {
    background: var(--pp-accent);
    color: #fff;
    border: none;
    font-weight: 600;
}

.btn-brand:hover {
    filter: brightness(.95);
}

/* Hero */
.hero-section {
    text-align: center;
    padding: 5rem 1rem;
}

.hero-section .display-heading {
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--pp-darkblue);
}

.hero-section .brand-accent {
    color: var(--pp-accent);
}

.btn-cta {
    background: var(--pp-accent);
    border: none;
    color: #fff;
    padding: .9rem 1.4rem;
    font-weight: 700;
    border-radius: .75rem;
}

.btn-cta:hover {
    filter: brightness(.95);
}

.btn-ghost {
    border: 1px solid #ddd;
    background: #fff;
    color: var(--pp-darkblue);
    padding: .9rem 1.4rem;
    font-weight: 700;
    border-radius: .75rem;
}

/* Sections */
.section-title {
    color: var(--pp-darkblue);
    font-weight: 800;
}

.section-subtitle {
    color: #6c757d;
    max-width: 70ch;
    margin: 0 auto;
}

.fcard {
    border: 1px solid #eef0f4;
    border-radius: 1rem;
    background: #fff;
    height: 100%;
}

.ficon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    background: rgba(0, 26, 116, .08);
    color: var(--pp-darkblue);
}

/* Check-list styles */
.check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: start;
    gap: .5rem;
    margin-bottom: .5rem;
}

.check-list i {
    color: var(--pp-accent);
    margin-top: .2rem;
}

/* Footer */
.foot {
    background: #fff;
    border-top: 1px solid #eef0f4;
}

/* ==============================
   Anchor offset for fixed navbar
   ============================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px; /* navbar height (76px) + a little breathing room */
}

/* Make sure sections don't hide under the fixed navbar when using #anchors */
section {
    scroll-margin-top: 75px;
}

/* Optional: if you ever anchor to elements that are NOT <section> */
[id] {
    scroll-margin-top: 75px;
}

/* Slightly bigger offset on mobile where the navbar can be taller */
@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 106px;
    }

    section, [id] {
        scroll-margin-top: 106px;
    }
}

/* Make hero occupy the full first screen so next section (About) is not visible on load */
.hero-section {
    min-height: calc(100vh - 76px); /* 76px = your fixed navbar offset */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 1rem; /* keep nice spacing inside hero */
}

