:root {
    --primary: #FF8C00;
    --primary-dark: #E67E00;
    --link-blue: #1e88e5;
    --link-hover: #1565c0;
    --bg-light: #f4f6f9;
    --white: #FFFFFF;
    --dark-text: #1a1a1a;
    --gray: #666;
    --border-radius: 15px;
}

/* ============================= */
/* GLOBAL RESET & BODY */
/* ============================= */
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg-light);
    color: var(--dark-text);
    font-family: "Cambria Math", Cambria, serif;
    line-height: 1.6;
    font-size: 1.05em;
}

/* ============================= */
/* NAVBAR STYLING (ADJUSTED)     */
/* ============================= */
.navbar {
    background-color: #333;
    padding: 1rem;
    /* Changed from sticky to fixed to remove the top gap */
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    box-sizing: border-box;
    /* Added height to match the padding-top in your HTML body */
    height: 70px; 
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%; /* Ensures links stay centered */
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s;
    padding: 5px 0; /* Adjusted padding to fit the 70px bar height */
    display: block;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* ============================= */
/* PRIVACY BUTTON (EXACT FIT) */
/* ============================= */
.privacy-wrapper {
    text-align: center;
    margin: 20px 0;
}

.privacy-container {
    display: inline-block;
    background-color: var(--primary);
    padding: 10px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.privacy-container a {
    color: white;
    text-decoration: none;
    font-family: "Cambria Math", serif;
    font-weight: bold;
}

/* ============================= */
/* PDF BUTTONS (OPEN THE PDF) */
/* ============================= */
.fallback {
    text-align: center;
    margin: 15px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary); /* Changed to Orange */
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-family: "Cambria Math", serif;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================= */
/* CONTACT SECTION (ICONS) */
/* ============================= */
.contact-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-card {
    background-color: var(--white);
    border-radius: 12px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.contact-card a {
    display: flex;
    width: 100%;
    height: 100%;
}

.contact-card img,
.contact-card svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
}

/* ============================= */
/* CONTAINERS & TYPOGRAPHY */
/* ============================= */
.container {
    max-width: 1100px;
    margin: 20px auto;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #0d47a1;
    font-family: "Cambria Math", serif;
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* ============================= */
/* SUPPORT SECTION */
/* ============================= */
.support-card {
    background-color: #ffffff;
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    border-left: 8px solid var(--primary);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: justify;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
    padding: 40px 0;
    color: var(--gray);
    text-align: center;
}