
        @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', Arial, sans-serif;
            background: white;
            color: #333;
            line-height: 1.4;
            font-size: 14px;
        }
        
        .container {
            max-width: 8.5in;
            margin: 0 auto;
            background: white;
            padding: 0.5in;
        }
        
        /* Header */
        .header {
            text-align: center;
            margin-bottom: 0.4in;
            border-bottom: 3px solid #2c5282;
            padding-bottom: 0.2in;
        }
        
        .header h1 {
            font-size: 24px;
            font-weight: 700;
            color: #2c5282;
            margin-bottom: 8px;
        }
        
        .header .subtitle {
            font-size: 16px;
            color: #4a5568;
            font-weight: 400;
        }
        
        .header .author {
            font-size: 12px;
            color: #666;
            margin-top: 8px;
        }
        
        /* Main content layout */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.3in;
            margin-bottom: 0.3in;
        }
        
        .purpose-section {
            background: #f8f9fa;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 0.2in;
        }
        
        .purpose-section h2 {
            font-size: 18px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 0.15in;
            text-align: center;
            background: #2c5282;
            color: white;
            padding: 8px;
            border-radius: 4px;
        }
        
        .component {
            margin-bottom: 0.15in;
        }
        
        .component h3 {
            font-size: 13px;
            font-weight: 600;
            color: #2c5282;
            margin-bottom: 4px;
            border-bottom: 1px solid #cbd5e0;
            padding-bottom: 2px;
        }
        
        .component ul {
            font-size: 11px;
            margin-left: 12px;
            color: #4a5568;
        }
        
        .component li {
            margin-bottom: 2px;
        }
        
        .component p {
            font-size: 11px;
            color: #4a5568;
            margin-bottom: 4px;
        }
        
        /* Key principles section */
        .principles {
            background: #edf2f7;
            border: 2px solid #cbd5e0;
            border-radius: 8px;
            padding: 0.2in;
            margin-bottom: 0.3in;
        }
        
        .principles h2 {
            font-size: 16px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 0.1in;
            text-align: center;
            background: #38a169;
            color: white;
            padding: 6px;
            border-radius: 4px;
        }
        
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.1in;
        }
        
        .principle-item {
            background: white;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #e2e8f0;
            text-align: center;
        }
        
        .principle-item h4 {
            font-size: 11px;
            font-weight: 600;
            color: #2c5282;
            margin-bottom: 4px;
        }
        
        .principle-item p {
            font-size: 10px;
            color: #4a5568;
        }
        
        /* Footer */
        .footer {
            background: #2c5282;
            color: white;
            padding: 0.15in;
            border-radius: 8px;
            text-align: center;
            margin-top: 0.2in;
        }
        
        .footer h3 {
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .footer p {
            font-size: 11px;
            opacity: 0.9;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.2in;
            margin-top: 0.1in;
        }
        
        .footer-item {
            text-align: left;
        }
        
        .footer-item h4 {
            font-size: 12px;
            margin-bottom: 4px;
            color: #90cdf4;
        }
        
        .footer-item p {
            font-size: 10px;
        }
        
        /* Print optimizations */
        @media print {
            body {
                font-size: 12px;
                -webkit-print-color-adjust: exact;
                color-adjust: exact;
            }
            
            .container {
                max-width: none;
                padding: 0.25in;
            }
            
            .main-content {
                break-inside: avoid;
            }
            
            .purpose-section {
                break-inside: avoid;
            }
        }
        
        /* Highlight boxes */
        .highlight-box {
            background: #fff5f5;
            border: 1px solid #fed7d7;
            border-left: 4px solid #e53e3e;
            padding: 8px;
            margin: 8px 0;
            border-radius: 4px;
        }
        
        .highlight-box p {
            font-size: 11px;
            color: #742a2a;
            margin: 0;
        }
        
        .icon {
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 4px;
            vertical-align: middle;
        }
        
        .faculty-icon {
            background: #2c5282;
            border-radius: 2px;
        }
        
        .student-icon {
            background: #38a169;
            border-radius: 2px;
        }
  