:root {
            --primary: #074359;
            --secondary: #376677;
            --accent: #8B4513; 
            --light: #f8f9fa;
            --dark: #07526e;
            --white: #ffffff;
            --gray: #6c757d;
            --dark-gray: #495057;
            --brown: #8B4513;        
            --light-brown: #A0522D;  
            --dark-brown: #654321;   
            --soft-brown: #D2B48C;  
            --navy-blue: #074359;
            --highlight: #A0522D;     
            --light-highlight: #D2B48C; 
            --off-white: #f5f5f5;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Times New Roman', Times, serif;
        }

        body {
            background-color: var(--off-white);
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            
        }

        header {         
            font-size: 18px;
            margin-bottom: 40px;
            color: #8B4513;
            margin-top: 120px;
        }

        /* .h3 {
            background: linear-gradient(to bottom, #407284, #ffffff, #407284);
            width: 50%;
            margin-left: 320px;
            border-bottom-right-radius: 50px;
            border-top-left-radius: 50px;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        } */

        .disclosure-header {
            background-color: var(--secondary);
            color: var(--white);
            padding: 15px;
            text-align: center;
            font-weight: bold;
            margin-bottom: 0px;
            border-radius: 4px 4px 0 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 4px 4px;
            overflow: hidden;
        }

        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--light-highlight);
        }

        th {
            background-color: var(--dark);
            color: var(--white);
            font-weight: 600;
        }

        tr:nth-child(even) {
            background-color: var(--light);
        }

        tr:nth-child(odd) {
            background-color: var(--white);
        }

        tr:hover {
            background-color: var(--soft-brown);
            transition: var(--transition);
        }

        .section-title {
            background-color: var(--accent);
            color: var(--white);
            font-weight: bold;
            padding: 10px 15px;
            margin-top: 30px;
            border-left: 5px solid #8B4513 !important;
        }

        .faculty-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .faculty-card {
            background-color: var(--white);
            padding: 15px;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            border-left: 3px solid #8B4513;
            transition: var(--transition);
            margin-bottom: 20px;
        }

        .faculty-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* footer {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        } */

        /* @media (max-width: 992px) {
             .header {
                font-size: 1rem;
                margin-left: 100%;
                padding: 0px;
                width: 20%;
            }
        } */

        @media (max-width: 768px) {
            th, td {
                padding: 8px 10px;
                font-size: 14px;
            }
            
            .faculty-list {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            
        }

        @media (max-width: 480px) {
            table {
                display: block;
                overflow-x: auto;
            }
            
            .faculty-list {
                grid-template-columns: 1fr;
            }
        }