:root {
    --primary: #049bce;
    --primary-dark: #027ba3;
    --primary-light: #e6f7fc;
    --navy: #071827;
    --navy-soft: #10263d;
    --white: #ffffff;
    --paper: #f7f9fb;
    --gray: #eef2f5;
    --border: #dbe3ea;
    --text: #17212b;
    --muted: #64748b;
    --gold: #f5c451;
    --shadow: 0 18px 45px rgba(7, 24, 39, 0.12);
    --shadow-soft: 0 8px 24px rgba(7, 24, 39, 0.07);

    /* Final cosmetic normalization */
    --font-body: Arial, Helvetica, sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
    --radius-control: 10px;
    --radius-pill: 999px;
    --radius-round: 50%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.3;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.label,
.kicker {
    color: var(--primary);
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.meta {
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 18px;
}

.btn,
.support-btn,
.read-more,
.search-form button,
.newsletter-form button,
.desktop-search button,
.footer-newsletter-form button,
.contact-form button {
    border: 0;
    border-radius: var(--radius-control);
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    padding: 11px 16px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn:hover,
.support-btn:hover,
.read-more:hover,
.search-form button:hover,
.newsletter-form button:hover,
.desktop-search button:hover,
.footer-newsletter-form button:hover,
.contact-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

input,
textarea,
select {
    border: 1px solid var(--border);
    border-radius: var(--radius-control);
    background: var(--white);
    color: var(--text);
    padding: 12px;
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-light);
    border-color: var(--primary);
}

.section-heading {
    align-items: end;
    border-bottom: 3px solid var(--navy);
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.08;
}

.section-heading a {
    color: var(--primary);
    font-weight: 800;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.back-to-top {
    background: var(--primary);
    border: 0;
    border-radius: var(--radius-round);
    bottom: 20px;
    color: var(--white);
    cursor: pointer;
    display: none;
    font-size: 1.3rem;
    height: 44px;
    position: fixed;
    right: 20px;
    width: 44px;
    z-index: 2000;
}

.back-to-top.visible {
    display: block;
}

.form-alert {
    margin: 20px 0;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.form-alert.success {
    background: rgba(4, 155, 206, 0.12);
    color: #075a78;
    border: 1px solid rgba(4, 155, 206, 0.35);
}

.form-alert.error {
    background: rgba(185, 28, 28, 0.10);
    color: #991b1b;
    border: 1px solid rgba(185, 28, 28, 0.30);
}

/* Hide Google reCAPTCHA floating badge */
.grecaptcha-badge {
    visibility: hidden;
}

/* Required reCAPTCHA legal notice */
.recaptcha-notice {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7280;
    text-transform: none;
}

.recaptcha-notice a {
    color: inherit;
    text-decoration: underline;
}

.recaptcha-notice a:hover {
    color: var(--primary);
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
.contact-recaptcha-notice {
    margin-top: 4px;
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.5;
    color: #6b7280;
}