:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --bg-color: #f4f6f8;
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}


.container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 0 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 50px 0;
}

/* Disclaimer Section Styling */
.disclaimer-section {
    background-color: #fffdf9;
    border-left: 5px solid #f39c12;
    padding: 20px;
    margin-top: 40px;
}

.disclaimer-title {
    color: #d35400;
    margin-top: 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
        margin: 20px 10px;
    }

    h1 {
        font-size: 1.8rem;
    }
}

/* =======================
   UNIFIED NAVBAR STYLES
   ======================== */
/* =======================
   UNIVERSAL NAVBAR CSS
======================== */

/* Variables required for the nav (Include these in your root if not already there) */
:root {
    --uni-primary: #0062E6;
    --uni-secondary: #333333;
    --uni-white: #ffffff;
    --uni-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 1. The Outer Wrapper (Sticky positioning) */
.uni-nav-wrapper {
    background: var(--uni-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    width: 100%;
}

/* 2. The Inner Box (Black background look) */
.uni-nav-bar-box {
    /* padding: 2vh 2rem; -> Adjusted for consistency */
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.8); /* As per your design */
    width: calc(100% - 4vw);
    max-width: 90vw;
    height: 5vh !important;
    margin: 0 auto;
    border-radius: 12px;
}

/* 3. Flex Container for Logo and Menu */
.uni-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
   
    /* Makes 1rem = 10px for easier math, scales with user zoom */
    font-size: 62.5%;

}

/* 4. Logo Image */
.uni-nav-logo-img {
    height: 5vh;
    max-width: 100%;
    display: block;
}

/* 5. Navigation List (UL) */
.uni-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 6. List Items (LI) */
.uni-nav-item {
    margin-left: 2.5rem;
}

/* 7. Links (A) */
.uni-nav-link {
    text-decoration: none;
    color: white; /* Text is white because bg is black */
    font-weight: 600;
    font-size: 1rem; 
    padding-top: 1vh;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.uni-nav-link:hover {
    color: var(--uni-primary);
}

/* Optional: Shadow when scrolled */
.uni-nav-wrapper.scrolled {
    box-shadow: var(--uni-shadow);
}

/* =======================
   RESPONSIVE STYLES (Mobile/Tablet)
======================== */
@media (max-width: 900px) {
    .uni-nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .uni-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .uni-nav-item {
        margin-left: 0;
    }
    
    .uni-nav-logo-img {
        height: auto;
        max-height: 40px;
    }
}/* =======================
   RESPONSIVE (Tablet/Mobile)
   ======================== */
@media (max-width: 900px) {
    .unified-nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .unified-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }

    .unified-nav-item {
        margin-left: 0;
    }
}

/* =======================
 2. SECTION 1: NAVBAR
 ======================== */
#section1-navbar {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar {
    padding: 2vh 2rem;
    /* Mix vh and rem */
    background: rgba(0, 0, 0, 0.8);
    /* Use vw but capped with max-width */
    width: calc(100% - 4vw);
    max-width: 1500px;
    margin: 0 auto;
    border-radius: 12px;
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    /* Container in navbar doesn't need its own padding */
}


#section1-navbar .logo {
    font-size: 2rem;
    /* Use rem */
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

#section1-navbar ul {
    display: flex;
    list-style: none;
}

#section1-navbar li {
    margin-left: 2.5rem;
    /* Use rem */
}

#section1-navbar a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    /* Use rem */
    padding-top: 2vh;
    transition: color 0.3s ease;
}

#section1-navbar a:hover {
    color: var(--primary-color);
}

#section1-navbar.scrolled {
    box-shadow: var(--shadow);
}