@charset "utf-8";
/* CSS Document */

<style>
        /* ===== GLOBAL STYLES (inherited from previous portal) ===== */
        :root {
            --primary: #1a56db;
            --primary-dark: #1e429f;
            --secondary: #7e22ce;
            --accent: #059669;
            --light: #f8fafc;
            --gray: #64748b;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --radius: 0.5rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f0f9ff 0%, #fef7ff 100%);
            min-height: 100vh;
            color: #1e293b;
            display: flex;
            flex-direction: column;
        }

        /* navigation (mirror style but simplified for disclaimer) */
        .nav-container {
            background: white;
            box-shadow: var(--shadow);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Logo imperial */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
	align-content: center;
}

/* Right logo container */
.header-container .logo:last-child {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px; /* Space between title and right logo */
	
}
.logo {
    width: 100px; /* Define logo container size */
    height: 100px; /* Define logo container size */
    overflow: hidden; /* Prevents overflow */
    border-radius: 15px; /* Apply corner rounding to the container */
	margin-right: 10px;
	
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area */
    transition: transform 0.5s ease; /* Transition for scale effect */
	
	
    
}


.logo img:hover {
    transform: scale(1.1); /* Slightly enlarges on hover */
}

/* End of logo imperial */


        

        /* main container */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            flex: 1;
        }

        /* page header (consistent) */
        .page-header {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }

        .page-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .page-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: white;
            font-size: 1.5rem;
        }

        .page-title h1 {
            font-size: 2rem;
            color: #1e293b;
        }

        .page-subtitle {
            color: var(--gray);
            font-size: 1.125rem;
            line-height: 1.6;
        }

        /* disclaimer specific card */
        .disclaimer-card {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border-left: 6px solid var(--primary);
        }

        .disclaimer-statement {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0f1c3d;
            margin: 1.5rem 0 1rem 0;
            padding: 1.2rem;
            background: #f0f4ff;
            border-radius: var(--radius);
            border: 1px solid #c3dafe;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        
        

       
    </style>