/* ========================================
   GLOBAL TOKENS
======================================== */
html {
    font-size: 14px;
}

:root {
    --orange: #f5a623;
    --orange-dark: #e8951a;
    --orange-light: #ffc04d;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-text: #555555;
    --dark: #222222;
    --text-dark: #1a1a1a;
    --text-mid: #555555;
    --text-light: #666666;
    --bg-light: #f7f7f7;
}

/* ========================================
   GLOBAL BASE
======================================== */
body {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
}

/* ========================================
   GLOBAL LAYOUT UTILITIES
======================================== */
.hcbi-page-shell,
.admission-page-shell {
    width: min(100%, 1600px);
    margin-inline: auto;
    overflow-x: clip;
}

.copyright-container {
    background-color: var(--orange);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

/* ========================================
   GLOBAL CTA BUTTONS (REUSED)
======================================== */
.hcbi-cta-btn-solid,
.hcbi-cta-btn-outline {
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hcbi-cta-btn-solid {
    background: var(--orange);
    color: var(--white);
    border: none;
}

.hcbi-cta-btn-solid:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.hcbi-cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 3px solid rgba(245, 166, 35, 1);
}

.hcbi-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}