   
        /* Additional custom styles for MoU page */
        .content-section {
            padding: 60px 0;
        }

        .info-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 5px solid var(--secondary-color);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .info-card h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card i {
            color: var(--accent-color);
        }

        .function-list {
            list-style: none;
            padding-left: 0;
        }

        .function-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .function-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }

        .serial-col {
            width: 60px;
            text-align: center;
            font-weight: 600;
            color: var(--primary-color);
        }

        .members-table .table {
            margin-bottom: 0;
        }

        .members-table .table th {
            background: var(--primary-color);
            color: white;
            border: none;
            font-weight: 600;
            padding: 15px;
            text-align: center;
        }

        .members-table .table td {
            padding: 12px 15px;
            border-color: #e2e8f0;
            vertical-align: middle;
        }

        .members-table .table tbody tr:nth-child(even) {
            background-color: #f8fafc;
        }

        .members-table .table tbody tr:hover {
            background-color: #e2e8f0;
        }

        .quick-link-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .quick-link-icon i {
            display: block;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .members-table {
                overflow-x: auto;
            }
            
            .info-card {
                padding: 20px;
            }
            
            .quick-link-icon {
                font-size: 2rem;
            }
        }
    