/* ── CSS Variables ───────────────────────────────── */
:root {
    --blue-primary: #0b5aa6;
    /* Stronger Corporate Blue */
    --blue-nav: #1a5c99;
    --blue-dark: #132b49;
    --blue-btn: #1e6ab5;
    --green-section: #7cb355;
    /* Refined Corporate Green */
    --green-dark: #5a9430;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #222222;
    --text-medium: #444444;
    --text-light: #777777;
    --border-light: #eeeeee;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --font: 'Inter', sans-serif;
}

/* ── Reset & Base ────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    font-size: 15px;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    outline: none;
}

/* ── Utility ─────────────────────────────────────── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(11, 90, 166, 0.2);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(11, 90, 166, 0.3);
}

.btn-secondary {
    background: var(--green-section);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--blue-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 19px;
    font-weight: 600;
    color: var(--blue-primary);
    margin: 20px 0 8px;
}

/* reCAPTCHA v3 Improvements */
.grecaptcha-badge { 
    visibility: hidden; 
}

.form-disclosure {
    font-size: 11px;
    color: var(--text-light);
    margin: 10px 0 15px;
    line-height: 1.4;
    text-align: center;
}

.form-disclosure a {
    color: var(--blue-primary);
    text-decoration: underline;
}
