/* ============================================================
   GENERAL DEFINITIONS PAGE — NFA
   File: assets/css/page-general-definitions.css
   ============================================================ */

/* ─────────────────────────────────────────
   RESET page-level defaults
───────────────────────────────────────── */
body.page-template-page-general-definitions {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

body.page-template-page-general-definitions .entry-title,
body.page-template-page-general-definitions .page-title,
body.page-template-page-general-definitions h1.page-title {
    display: none !important;
}

/* ─────────────────────────────────────────
   DESIGN TOKENS  (mirrors how-it-works)
───────────────────────────────────────── */
.gd-page {
    --gd-navy:     #0d1f3c;
    --gd-navy-mid: #1a3a6b;
    --gd-orange:   #e05c2a;
    --gd-border:   #dde3ec;
    --gd-text:     #0a0a0a;
    --gd-muted:    #5f6b7a;

    font-family: 'Inter', sans-serif;
    color: var(--gd-text);
}

/* ══════════════════════════════════════
   BANNER — matches .hiw-banner exactly
══════════════════════════════════════ */
.gd-banner {
    padding: 234px 20px 173px !important;
    text-align: center;
}

.gd-banner__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.gd-banner__title {
    color: #fff;
    margin: 0;
    letter-spacing: -0.312px;
    line-height: 140%;
}

/* ══════════════════════════════════════
   FORM SECTION WRAPPER
══════════════════════════════════════ */
/* .gd-form-section {
    
} */

/* ══════════════════════════════════════
   MAIN SECTION WRAPPER  (mirrors .hiw-section)
══════════════════════════════════════ */
.gd-section {
    max-width: 1720px;
    margin: 0 auto;
    padding: 72px 0 74px;
}

/* ══════════════════════════════════════
   INTRO PARAGRAPHS
══════════════════════════════════════ */
.gd-intro {
    margin-bottom: 40px;
}

.gd-intro__paragraph {
    font-size: var(--fs-18, 18px);
    line-height: var(--lh-133, 1.6);
    color: #0A0A0A;
    font-weight: var(--fw-400, 400);
    /* margin: 0 0 4px; */
}

/* .gd-intro__paragraph p {
    margin: 0 0 4px;
} */

/* ══════════════════════════════════════
   DEFINITION SECTIONS
══════════════════════════════════════ */
.gd-def-section {
    margin-bottom: 48px;
}

.gd-def-section__heading {
    font-weight: 700;
    color: var(--gd-navy);
    margin: 0 0 0;
    padding-bottom: 0;
}

/* ══════════════════════════════════════
   ACCORDION  (mirrors how-it-works step rows)
══════════════════════════════════════ */
.gd-accordion {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
}

.gd-accordion__item {
    border-bottom: 1px solid var(--gd-border);
}

.gd-accordion__item:first-child {
    border-top: 1px solid var(--gd-border);
}

.gd-accordion__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.gd-accordion__term {
    /* font-size: var(--fs-18, 18px);
    font-weight: 600; */
    color: #0A0A0A;
    /* line-height: 1.4; */
}

.gd-accordion__icon {
    flex-shrink: 0;
    color: var(--gd-muted);
    transition: transform 0.2s ease;
}

.gd-accordion__trigger[aria-expanded="true"] .gd-accordion__icon {
    transform: rotate(180deg);
}

.gd-accordion__panel {
    padding: 0 0 20px;
}

.gd-accordion__panel[hidden] {
    display: none;
}

.gd-accordion__body {
    font-size: var(--fs-18, 18px);
    font-weight: var(--fw-400, 400);
    line-height: var(--lh-133, 1.6);
    /* color: #5F5F5F; */
}

/* .gd-accordion__body p {
    margin: 0 0 8px;
} */

.gd-accordion__body p:last-child {
    margin-bottom: 0;
}

.gd-accordion__body p + p {
    margin-top: 4px;
}

/* ══════════════════════════════════════
   RESEARCH SECTION
══════════════════════════════════════ */
.gd-research {
    margin-bottom: 48px;
}

.gd-research__heading {
    font-weight: 700;
    color: #000;
    margin: 0 0 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.20); 
}

.gd-research__intro {
    font-size: var(--fs-18, 18px);
    font-weight: var(--fw-400, 400);
    line-height: var(--lh-133, 1.6);
    color: #0A0A0A;
    margin-bottom: 20px;
}

.gd-research__intro p {
    margin: 0 0 4px;
}

/* ══════════════════════════════════════
   RESOURCE LINK BUTTONS
   (matches .hiw-cta dark pill style)
══════════════════════════════════════ */
.gd-resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gd-resource-links__btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: #003B86;
    color: #fff;
    font-size: var(--fs-18);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.gd-resource-links__btn:hover {
    background-color: #003B86;
    color: #fff;
    text-decoration: none;
}

/* ══════════════════════════════════════
   KEY TAKEAWAYS
══════════════════════════════════════ */
.gd-takeaways {
    margin-top: 8px;
}

.gd-takeaways__heading {
    font-weight: 700;
    color: var(--gd-navy);
    margin: 0 0 16px;
}

.gd-takeaways__content {
    font-size: var(--fs-18, 18px);
    font-weight: var(--fw-400, 400);
    line-height: var(--lh-133, 1.6);
    color: #5F5F5F;
}

.gd-takeaways__content ul {
    list-style: none;
    padding-left: 10px !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gd-takeaways__content ul li {
    padding-left: 18px;
    position: relative;
    color: #5F5F5F;
}

.gd-takeaways__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #5F5F5F;
    border-radius: 50%;
}
.gd-intro__paragraph p{
        padding-bottom: 12px;
}
.gd-intro__paragraph p:last-child{
        padding-bottom: 0 !important;
}
.gd-accordion__body p{
    padding-bottom: 12px;
}
.gd-accordion__body p:last-child{
        padding-bottom: 0 !important;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media only screen and (max-width: 1720px) {
    .gd-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1599px) {
    .gd-banner {
        padding: 210px 20px 150px !important;
    }
}

@media only screen and (max-width: 1366px) {
    .gd-banner {
        padding: 180px 20px 130px !important;
    }
    .gd-section {
        padding-bottom: 45px;
    }
}

@media only screen and (max-width: 1024px) {
    .gd-banner {
        padding: 150px 20px 150px !important;
    }
}

@media only screen and (max-width: 767px) {
    .gd-banner {
        padding: 129px 20px 270px !important;
    }
    .gd-section {
        padding-bottom: 30px;
    }
    .nfa-header__inner {
        margin-left: 15px;
        margin-right: 15px;
    }
    
}

@media (max-width: 768px) {
    .gd-banner {
        padding: 40px 0 36px;
    }
    .gd-banner__title {
        font-size: 28px;
    }
    .nfa-hero__form-wrap{
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 479px) {
    .gd-section {
        padding: 48px 16px;
    }
    .nfa-hero__form-wrap {
        margin-left: 15px;
        margin-right: 15px;
    }
    .main-banner {
        padding: 140px 20px 370px !important;
    }
    .nfa-hero__form-wrap {
        margin-top: -320px !important;
    }
    .nfa-hero__form-wrap{
        margin-left: 15px;
        margin-right: 15px;
    }
}